﻿.projects {
    padding: 90px 0;
    background: linear-gradient(118deg, #0a2817, #134b2d 55%, #0e3a22);
    color: #fff;
}

.project {
    margin-top: 60px;
}

.project-head h3 {
    font-size: 26px;
    margin: 0 0 10px;
}

.project-head p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 760px;
    margin: 0 0 24px;
    line-height: 1.6;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.project-item {
    margin: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

    .project-item img {
        width: 100%;
        height: 260px;
        object-fit: cover; /* fills the box, no distortion, no repeat */
        display: block;
        transition: transform 0.5s ease;
    }

    .project-item:hover img {
        transform: scale(1.06);
    }

    .project-item figcaption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 30px 16px 12px;
        font-size: 14px;
        background: linear-gradient(transparent, rgba(5, 20, 12, 0.85));
    }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    z-index: 2000;
}

    .lightbox.open {
        opacity: 1;
        visibility: visible;
    }

    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 8px;
    }

.slide-bg {
    position: absolute;
    inset: 0; /* fills the whole slide */
     background-size: cover; /* stretches ONE image to cover everything */
    background-position: center; /* keeps the image centered */
    background-repeat: no-repeat !important; /* stops tiling/repetition */
    z-index: 0;
}

.slide-art,
.slide-inner {
    position: relative;
    z-index: 1; /* keeps content above the image */
} /* Dropdown container */
.dropdown {
    position: relative;
}

/* Dropdown menu (hidden by default) */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    overflow: hidden;
    z-index: 1000;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown links */
.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
}

    .dropdown-menu a:hover {
        background: #f2f2f2;
    }

/* Caret arrow */
.caret {
    font-size: 10px;
    margin-left: 4px;
}/* ══════════ INFRASTRUCTURE SECTION ══════════ */
.infra-section {
    background: #faf8f1;
    padding: 80px 0
}

    .infra-section.infra-alt {
        background: #f2eee1
    }

.infra-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
    padding: 0 16px
}

.infra-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 600 13px/1 'Jost',sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #2c9c58;
    background: #e7f3ea;
    border: 1px solid #bfe0cb;
    padding: 9px 18px;
    border-radius: 100px
}

    .infra-kicker .icon {
        width: 16px;
        height: 16px
    }

.infra-title {
    font: 700 clamp(28px,4vw,42px)/1.15 'Playfair Display',serif;
    color: #14532d;
    margin: 18px 0 12px
}

    .infra-title em {
        font-style: italic;
        color: #c9a227
    }

.infra-sub {
    font: 400 17px/1.6 'Jost',sans-serif;
    color: #4a5d52
}

/* — gallery mosaic — */
.infra-gallery {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    grid-auto-rows: 210px;
    gap: 16px
}

.infra-fig {
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(20,83,45,.08);
    min-width: 0
}

.infra-fig-lg {
    grid-column: span 2;
    grid-row: span 2
}

.infra-fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease
}

.infra-fig:hover img {
    transform: scale(1.06)
}

.infra-fig figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(to top,rgba(12,50,32,.85),rgba(12,50,32,0));
    color: #fff
}

.infra-tag {
    flex: 0 0 auto;
    font: 600 11px/1 'Jost',sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #14532d;
    background: #e7c65f;
    padding: 6px 10px;
    border-radius: 100px
}

.infra-cap {
    font: 500 14.5px/1.3 'Jost',sans-serif;
    text-shadow: 0 1px 4px rgba(0,0,0,.4)
}

/* — facility cards — */
.infra-cards {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 18px
}

.infra-card {
    background: #fff;
    border: 1px solid #e8e2d4;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(20,83,45,.05);
    transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease
}

    .infra-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 26px rgba(20,83,45,.12);
        border-color: #c9a227
    }

.infra-ico {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #e7f3ea;
    color: #2c9c58;
    transition: background .25s ease,color .25s ease
}

    .infra-ico .icon {
        width: 26px;
        height: 26px
    }

.infra-card:hover .infra-ico {
    background: #2c9c58;
    color: #fff
}

.infra-card h3 {
    font: 600 18px/1.3 'Jost',sans-serif;
    color: #14532d;
    margin: 0 0 8px
}

.infra-card p {
    margin: 0;
    font: 400 14.5px/1.65 'Jost',sans-serif;
    color: #4a5d52
}

/* — nursery locations — */
.infra-loc-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 18px
}

.infra-loc {
    background: #fff;
    border: 1px solid #e8e2d4;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(20,83,45,.05);
    transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease
}

    .infra-loc:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 26px rgba(20,83,45,.12);
        border-color: #c9a227
    }

.infra-loc-ico {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #14532d;
    color: #e7c65f
}

    .infra-loc-ico .icon {
        width: 22px;
        height: 22px
    }

.infra-loc h3 {
    font: 700 20px/1.2 'Playfair Display',serif;
    color: #14532d;
    margin: 0 0 6px
}

.infra-loc p {
    margin: 0;
    font: 400 14px/1.6 'Jost',sans-serif;
    color: #4a5d52
}

/* — stats band — */
.infra-stats {
    background: #14532d;
    padding: 44px 0
}

.infra-stats-inner {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 20px;
    text-align: center
}

.infra-stat b {
    display: block;
    font: 700 clamp(26px,3.4vw,38px)/1.1 'Playfair Display',serif;
    color: #e7c65f
}

.infra-stat span {
    font: 500 13px/1.4 'Jost',sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #bcd8c4
}

@media(max-width:1024px) {
    .infra-gallery {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .infra-cards, .infra-loc-grid {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .infra-stats-inner {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }
}

@media(max-width:640px) {
    .infra-section {
        padding: 56px 0
    }

    .infra-gallery {
        grid-template-columns: minmax(0,1fr);
        grid-auto-rows: 200px
    }

    .infra-fig-lg {
        grid-column: span 1;
        grid-row: span 1
    }

    .infra-cards, .infra-loc-grid {
        grid-template-columns: minmax(0,1fr)
    }
}
/* ══════════ WHY CHOOSE US SECTION ══════════ */
.wcu {
    background: #f2eee1;
    padding: 90px 0;
    position: relative;
    overflow: hidden
}

.wcu-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
    padding: 0 16px
}

.wcu-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 600 13px/1 'Jost',sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #2c9c58;
    background: #e7f3ea;
    border: 1px solid #bfe0cb;
    padding: 9px 18px;
    border-radius: 100px
}

    .wcu-kicker .icon {
        width: 16px;
        height: 16px
    }

.wcu-title {
    font: 700 clamp(28px,4vw,44px)/1.15 'Playfair Display',serif;
    color: #14532d;
    margin: 18px 0 12px
}

    .wcu-title em {
        font-style: italic;
        color: #c9a227
    }

.wcu-sub {
    font: 400 17px/1.6 'Jost',sans-serif;
    color: #4a5d52
}

/* — featured principle quote — */
.wcu-quote {
    max-width: 880px;
    margin: 0 auto 56px;
    padding: 38px 42px;
    background: #14532d;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 14px 34px rgba(20,83,45,.22)
}

.wcu-quote-ico {
    width: 38px;
    height: 38px;
    color: #e7c65f;
    margin: 0 auto 14px;
    display: block
}

.wcu-quote-txt {
    margin: 0;
    font: 600 clamp(19px,2.4vw,25px)/1.45 'Playfair Display',serif;
    font-style: italic;
    color: #fff
}

.wcu-quote-sub {
    margin: 16px auto 0;
    max-width: 700px;
    font: 400 15.5px/1.7 'Jost',sans-serif;
    color: #bcd8c4
}

/* — commitment cards — */
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    list-style: none;
    padding: 0
}

.wcu-card {
    position: relative;
    min-width: 0;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e8e2d4;
    border-radius: 16px;
    padding: 34px 26px 28px;
    box-shadow: 0 2px 8px rgba(20,83,45,.05);
    transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease
}

    .wcu-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 26px rgba(20,83,45,.12);
        border-color: #c9a227
    }

.wcu-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font: 700 26px/1 'Playfair Display',serif;
    color: #e8e2d4;
    transition: color .25s ease
}

.wcu-card:hover .wcu-num {
    color: #e7c65f
}

.wcu-ico {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #e7f3ea;
    color: #2c9c58;
    transition: background .25s ease,color .25s ease
}

    .wcu-ico .icon {
        width: 24px;
        height: 24px
    }

.wcu-card:hover .wcu-ico {
    background: #2c9c58;
    color: #fff
}

.wcu-card h3 {
    font: 600 19px/1.3 'Jost',sans-serif;
    color: #14532d;
    margin: 0 0 10px;
    padding-right: 34px
}

.wcu-card p {
    margin: 0;
    font: 400 14.5px/1.7 'Jost',sans-serif;
    color: #4a5d52
}

@media(max-width:1024px) {
    .wcu-grid {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }
}

@media(max-width:768px) {
    .wcu {
        padding: 64px 0
    }

    .wcu-quote {
        padding: 30px 24px;
        margin-bottom: 40px
    }
}

@media(max-width:640px) {
    .wcu-grid {
        grid-template-columns: minmax(0,1fr)
    }
}
/* ══════════ CLIENT HIGHLIGHTS : PCMC ══════════ */
.cl-highlight {
    background: #fff;
    padding: 90px 0
}

.clh-head {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 40px;
    padding: 0 16px
}

.clh-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 600 13px/1 'Jost',sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #2c9c58;
    background: #e7f3ea;
    border: 1px solid #bfe0cb;
    padding: 9px 18px;
    border-radius: 100px
}

    .clh-kicker .icon {
        width: 16px;
        height: 16px
    }

.clh-title {
    font: 700 clamp(26px,3.6vw,40px)/1.2 'Playfair Display',serif;
    color: #14532d;
    margin: 18px 0 14px
}

    .clh-title em {
        font-style: italic;
        color: #c9a227
    }

.clh-lead {
    font: 400 17px/1.7 'Jost',sans-serif;
    color: #4a5d52
}

/* — stats strip — */
.clh-stats {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
    max-width: 980px;
    margin: 0 auto 44px;
    padding: 0 16px
}

.clh-stat {
    background: #f2eee1;
    border: 1px solid #e8e2d4;
    border-radius: 14px;
    text-align: center;
    padding: 20px 12px;
    transition: border-color .25s ease,transform .25s ease
}

    .clh-stat:hover {
        border-color: #c9a227;
        transform: translateY(-3px)
    }

    .clh-stat b {
        display: block;
        font: 700 clamp(22px,2.6vw,30px)/1.1 'Playfair Display',serif;
        color: #14532d
    }

    .clh-stat span {
        display: block;
        margin-top: 6px;
        font: 500 12.5px/1.35 'Jost',sans-serif;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: #4a5d52
    }

/* — highlight cards — */
.clh-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px
}

.clh-card {
    min-width: 0;
    box-sizing: border-box;
    background: #faf8f1;
    border: 1px solid #e8e2d4;
    border-left: 4px solid #2c9c58;
    border-radius: 14px;
    padding: 26px 26px 24px;
    transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease
}

    .clh-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 26px rgba(20,83,45,.12);
        border-color: #c9a227;
        border-left-color: #c9a227
    }

.clh-ico {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: #e7f3ea;
    color: #2c9c58;
    transition: background .25s ease,color .25s ease
}

    .clh-ico .icon {
        width: 22px;
        height: 22px
    }

.clh-card:hover .clh-ico {
    background: #2c9c58;
    color: #fff
}

.clh-card h3 {
    font: 600 18.5px/1.3 'Jost',sans-serif;
    color: #14532d;
    margin: 0 0 10px
}

.clh-card p {
    margin: 0;
    font: 400 14.5px/1.7 'Jost',sans-serif;
    color: #4a5d52
}

/* — CTA band — */
.clh-cta {
    margin-top: 48px;
    background: #14532d;
    border-radius: 20px;
    padding: 36px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    flex-wrap: wrap;
    box-shadow: 0 14px 34px rgba(20,83,45,.2)
}

.clh-cta-txt h3 {
    font: 700 clamp(20px,2.6vw,26px)/1.25 'Playfair Display',serif;
    color: #fff;
    margin: 0 0 8px
}

.clh-cta-txt p {
    margin: 0;
    font: 400 15px/1.6 'Jost',sans-serif;
    color: #bcd8c4;
    max-width: 560px
}

.clh-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.clh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 600 15px/1 'Jost',sans-serif;
    padding: 14px 26px;
    border-radius: 100px;
    text-decoration: none;
    transition: all .25s ease
}

    .clh-btn .icon {
        width: 16px;
        height: 16px
    }

.clh-btn-l {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.45)
}

    .clh-btn-l:hover {
        border-color: #e7c65f;
        color: #e7c65f
    }

.clh-btn-s {
    background: #e7c65f;
    color: #14532d;
    border: 1.5px solid #e7c65f
}

    .clh-btn-s:hover {
        background: #fff;
        border-color: #fff
    }

@media(max-width:1024px) {
    .clh-stats {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }
}

@media(max-width:768px) {
    .cl-highlight {
        padding: 64px 0
    }

    .clh-grid {
        grid-template-columns: minmax(0,1fr)
    }

    .clh-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px
    }

    .clh-cta-btns {
        justify-content: center
    }
}
/* ══════════ SERVICES SECTION ══════════ */
.svc {
    background: #faf8f1;
    padding: 80px 0
}

    .svc.svc-alt {
        background: #f2eee1
    }

.svc-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 0 16px
}

.svc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 600 13px/1 'Jost',sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #2c9c58;
    background: #e7f3ea;
    border: 1px solid #bfe0cb;
    padding: 9px 18px;
    border-radius: 100px
}

    .svc-kicker .icon {
        width: 16px;
        height: 16px
    }

.svc-title {
    font: 700 clamp(28px,4vw,44px)/1.15 'Playfair Display',serif;
    color: #14532d;
    margin: 18px 0 12px
}

    .svc-title em {
        font-style: italic;
        color: #c9a227
    }

.svc-sub {
    font: 400 17px/1.6 'Jost',sans-serif;
    color: #4a5d52
}

/* — plant category grid — */
.svc-plant-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px
}

.svc-plant {
    min-width: 0;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e8e2d4;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(20,83,45,.05);
    transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease
}

    .svc-plant:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(20,83,45,.12);
        border-color: #c9a227
    }

.svc-plant-ico {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #e7f3ea;
    color: #2c9c58;
    transition: background .25s ease,color .25s ease
}

    .svc-plant-ico .icon {
        width: 24px;
        height: 24px
    }

.svc-plant:hover .svc-plant-ico {
    background: #2c9c58;
    color: #fff
}

.svc-plant h3 {
    font: 600 15.5px/1.3 'Jost',sans-serif;
    color: #14532d;
    margin: 0 0 6px
}

.svc-plant p {
    margin: 0;
    font: 400 13px/1.55 'Jost',sans-serif;
    color: #4a5d52
}

/* — big tree supply spec panel — */
.svc-spec {
    margin-top: 36px;
    background: #14532d;
    border-radius: 20px;
    padding: 38px 42px;
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
    gap: 36px;
    align-items: center;
    box-shadow: 0 14px 34px rgba(20,83,45,.2)
}

    .svc-spec h3 {
        display: flex;
        align-items: center;
        gap: 10px;
        font: 700 clamp(20px,2.4vw,25px)/1.25 'Playfair Display',serif;
        color: #e7c65f;
        margin: 0 0 14px
    }

        .svc-spec h3 .icon {
            width: 24px;
            height: 24px;
            flex: 0 0 auto
        }

    .svc-spec p {
        margin: 0;
        font: 400 15px/1.75 'Jost',sans-serif;
        color: #dcebe0
    }

.svc-spec-chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px
}

    .svc-spec-chips li {
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(231,198,95,.35);
        border-radius: 12px;
        padding: 16px 14px;
        text-align: center
    }

    .svc-spec-chips b {
        display: block;
        font: 700 21px/1.15 'Playfair Display',serif;
        color: #fff
    }

    .svc-spec-chips span {
        display: block;
        margin-top: 5px;
        font: 500 11.5px/1.4 'Jost',sans-serif;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: #bcd8c4
    }

/* — services cards — */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px
}

.svc-card {
    min-width: 0;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e8e2d4;
    border-radius: 16px;
    padding: 30px 26px;
    box-shadow: 0 2px 8px rgba(20,83,45,.05);
    transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease
}

    .svc-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 26px rgba(20,83,45,.12);
        border-color: #c9a227
    }

.svc-ico {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #e7f3ea;
    color: #2c9c58;
    transition: background .25s ease,color .25s ease
}

    .svc-ico .icon {
        width: 24px;
        height: 24px
    }

.svc-card:hover .svc-ico {
    background: #2c9c58;
    color: #fff
}

.svc-card h3 {
    font: 600 19px/1.3 'Jost',sans-serif;
    color: #14532d;
    margin: 0 0 10px
}

.svc-card p {
    margin: 0;
    font: 400 14.5px/1.7 'Jost',sans-serif;
    color: #4a5d52
}

.svc-card-cta {
    background: #e7f3ea;
    border-color: #bfe0cb;
    display: flex;
    flex-direction: column;
    justify-content: center
}

    .svc-card-cta h3 {
        font: 700 20px/1.3 'Playfair Display',serif;
        font-style: italic
    }

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font: 600 15px/1 'Jost',sans-serif;
    color: #2c9c58;
    text-decoration: none;
    transition: color .25s ease,gap .25s ease
}

    .svc-link .icon {
        width: 15px;
        height: 15px
    }

    .svc-link:hover {
        color: #14532d;
        gap: 12px
    }

/* — nursery stats + text — */
.svc-stats {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
    margin-bottom: 40px
}

.svc-stat {
    background: #fff;
    border: 1px solid #e8e2d4;
    border-radius: 14px;
    text-align: center;
    padding: 22px 12px;
    transition: border-color .25s ease,transform .25s ease
}

    .svc-stat:hover {
        border-color: #c9a227;
        transform: translateY(-3px)
    }

    .svc-stat b {
        display: block;
        font: 700 clamp(22px,2.8vw,32px)/1.1 'Playfair Display',serif;
        color: #14532d
    }

    .svc-stat span {
        display: block;
        margin-top: 6px;
        font: 500 12.5px/1.35 'Jost',sans-serif;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: #4a5d52
    }

.svc-nursery-txt {
    max-width: 900px;
    margin: 0 auto 44px
}

    .svc-nursery-txt p {
        font: 400 16px/1.8 'Jost',sans-serif;
        color: #3d5044;
        margin: 0 0 18px
    }

        .svc-nursery-txt p:last-child {
            margin-bottom: 0
        }

    .svc-nursery-txt b {
        color: #14532d;
        font-weight: 600
    }

/* — nursery gallery — */
.svc-gallery {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px
}

.svc-fig {
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(20,83,45,.1);
    min-width: 0
}

    .svc-fig img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        display: block;
        transition: transform .5s ease
    }

    .svc-fig:hover img {
        transform: scale(1.05)
    }

    .svc-fig figcaption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 18px;
        background: linear-gradient(to top,rgba(12,50,32,.88),rgba(12,50,32,0));
        color: #fff;
        font: 500 14.5px/1.4 'Jost',sans-serif
    }

.svc-fig-tag {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e7c65f;
    color: #14532d
}

    .svc-fig-tag .icon {
        width: 15px;
        height: 15px
    }

@media(max-width:1024px) {
    .svc-plant-grid {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }

    .svc-spec {
        grid-template-columns: minmax(0,1fr)
    }

    .svc-grid {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .svc-stats {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }
}

@media(max-width:640px) {
    .svc {
        padding: 56px 0
    }

    .svc-plant-grid {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .svc-grid {
        grid-template-columns: minmax(0,1fr)
    }

    .svc-gallery {
        grid-template-columns: minmax(0,1fr)
    }

    .svc-fig img {
        height: 240px
    }

    .svc-spec {
        padding: 28px 22px
    }
}

@media(max-width:460px) {
    .svc-plant-grid {
        grid-template-columns: minmax(0,1fr)
    }

    .svc-spec-chips {
        grid-template-columns: minmax(0,1fr)
    }
}
/* ══════════ ABOUT US SECTION ══════════ */
.abt {
    background: #faf8f1;
    padding: 80px 0
}

    .abt.abt-alt {
        background: #f2eee1
    }

.abt-lead {
    max-width: 900px;
    margin: 0 auto 44px;
    padding: 0 16px
}

    .abt-lead p {
        font: 400 17px/1.85 'Jost',sans-serif;
        color: #3d5044;
        margin: 0
    }

    .abt-lead b {
        color: #14532d;
        font-weight: 600
    }

.abt-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 0 16px
}

.abt-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 600 13px/1 'Jost',sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #2c9c58;
    background: #e7f3ea;
    border: 1px solid #bfe0cb;
    padding: 9px 18px;
    border-radius: 100px
}

    .abt-kicker .icon {
        width: 16px;
        height: 16px
    }

.abt-title {
    font: 700 clamp(28px,4vw,44px)/1.15 'Playfair Display',serif;
    color: #14532d;
    margin: 18px 0 12px
}

    .abt-title em {
        font-style: italic;
        color: #c9a227
    }

.abt-sub {
    font: 400 16.5px/1.7 'Jost',sans-serif;
    color: #4a5d52
}

/* — two entities — */
.abt-duo {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px
}

.abt-entity {
    position: relative;
    min-width: 0;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e8e2d4;
    border-radius: 18px;
    padding: 34px 30px;
    box-shadow: 0 2px 8px rgba(20,83,45,.05);
    transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease
}

    .abt-entity:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 26px rgba(20,83,45,.12);
        border-color: #c9a227
    }

.abt-entity-ico {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #e7f3ea;
    color: #2c9c58;
    transition: background .25s ease,color .25s ease
}

    .abt-entity-ico .icon {
        width: 26px;
        height: 26px
    }

.abt-entity:hover .abt-entity-ico {
    background: #2c9c58;
    color: #fff
}

.abt-entity-year {
    position: absolute;
    top: 26px;
    right: 28px;
    font: 600 12px/1 'Jost',sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #14532d;
    background: #e7c65f;
    padding: 7px 14px;
    border-radius: 100px
}

.abt-entity h3 {
    font: 700 23px/1.2 'Playfair Display',serif;
    color: #14532d;
    margin: 0 0 10px
}

.abt-entity p {
    margin: 0;
    font: 400 15px/1.75 'Jost',sans-serif;
    color: #4a5d52
}

/* — end-to-end flow — */
.abt-flow {
    margin-top: 44px;
    background: #fff;
    border: 1px solid #e8e2d4;
    border-radius: 18px;
    padding: 36px 34px;
    box-shadow: 0 2px 8px rgba(20,83,45,.05)
}

.abt-flow-head {
    text-align: center;
    margin-bottom: 26px
}

    .abt-flow-head h3 {
        font: 700 clamp(20px,2.6vw,26px)/1.2 'Playfair Display',serif;
        color: #14532d;
        margin: 0
    }

        .abt-flow-head h3 em {
            font-style: italic;
            color: #c9a227
        }

.abt-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 14px;
    align-items: stretch
}

.abt-step {
    min-width: 0;
    box-sizing: border-box;
    background: #faf8f1;
    border: 1px solid #e8e2d4;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: border-color .25s ease,transform .25s ease
}

    .abt-step:hover {
        border-color: #c9a227;
        transform: translateY(-3px)
    }

.abt-step-num {
    display: block;
    font: 700 15px/1 'Jost',sans-serif;
    color: #c9a227;
    margin-bottom: 8px
}

.abt-step-ico {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #e7f3ea;
    color: #2c9c58
}

    .abt-step-ico .icon {
        width: 22px;
        height: 22px
    }

.abt-step h4 {
    font: 600 16.5px/1.3 'Jost',sans-serif;
    color: #14532d;
    margin: 0 0 6px
}

.abt-step p {
    margin: 0;
    font: 400 13.5px/1.6 'Jost',sans-serif;
    color: #4a5d52
}

.abt-arrow {
    display: grid;
    place-items: center;
    color: #c9a227
}

    .abt-arrow .icon {
        width: 22px;
        height: 22px
    }

/* — stats band — */
.abt-stats {
    background: #14532d;
    padding: 46px 0
}

.abt-stats-inner {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 20px;
    text-align: center
}

.abt-stat b {
    display: block;
    font: 700 clamp(24px,3.2vw,36px)/1.1 'Playfair Display',serif;
    color: #e7c65f
}

.abt-stat span {
    display: block;
    margin-top: 7px;
    font: 500 12.5px/1.45 'Jost',sans-serif;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #bcd8c4
}

/* — approach cards — */
.abt-cards {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px
}

.abt-card {
    position: relative;
    min-width: 0;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e8e2d4;
    border-radius: 16px;
    padding: 32px 26px 26px;
    box-shadow: 0 2px 8px rgba(20,83,45,.05);
    transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease
}

    .abt-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 26px rgba(20,83,45,.12);
        border-color: #c9a227
    }

.abt-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font: 700 26px/1 'Playfair Display',serif;
    color: #e8e2d4;
    transition: color .25s ease
}

.abt-card:hover .abt-num {
    color: #e7c65f
}

.abt-ico {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #e7f3ea;
    color: #2c9c58;
    transition: background .25s ease,color .25s ease
}

    .abt-ico .icon {
        width: 24px;
        height: 24px
    }

.abt-card:hover .abt-ico {
    background: #2c9c58;
    color: #fff
}

.abt-card h3 {
    font: 600 19px/1.3 'Jost',sans-serif;
    color: #14532d;
    margin: 0 0 10px;
    padding-right: 34px
}

.abt-card p {
    margin: 0;
    font: 400 14.5px/1.7 'Jost',sans-serif;
    color: #4a5d52
}

/* — team note — */
.abt-team {
    max-width: 880px;
    margin: 44px auto 0;
    padding: 32px 38px;
    background: #14532d;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(20,83,45,.2)
}

.abt-team-ico {
    width: 32px;
    height: 32px;
    color: #e7c65f;
    margin: 0 auto 12px;
    display: block
}

.abt-team p {
    margin: 0;
    font: 400 16.5px/1.75 'Jost',sans-serif;
    color: #dcebe0
}

.abt-team b {
    color: #e7c65f;
    font-weight: 600
}

@media(max-width:1024px) {
    .abt-steps {
        grid-template-columns: minmax(0,1fr)
    }

    .abt-arrow {
        transform: rotate(90deg)
    }

    .abt-cards {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .abt-stats-inner {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }
}

@media(max-width:768px) {
    .abt {
        padding: 60px 0
    }

    .abt-duo {
        grid-template-columns: minmax(0,1fr)
    }

    .abt-team {
        padding: 26px 22px
    }
}

@media(max-width:640px) {
    .abt-cards {
        grid-template-columns: minmax(0,1fr)
    }
}/* --- Right Column: Query Form --- */
.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 28px;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
        }

    .form-group textarea {
        height: 150px;
        resize: vertical;
    }

.submit-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #004494;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        padding: 20px;
    }
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: left;
    margin-bottom: 30px;
}

    .form-header h2 {
        color: #333;
        font-weight: 700;
    }

.form-group {
    margin-bottom: 20px;
}

.control-label {
    font-weight: 600;
    color: #555;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: border-color 0.3s;
}

    .form-control:focus {
        border-color: #4e73df;
        box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
    }

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #000;
        border-color: #2653d4;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Notification Popup Styles */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .notification-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.notification-popup {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 0.3s;
}

.notification-overlay.show .notification-popup {
    transform: scale(1);
}

.notification-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.notification-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.notification-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.close-notification {
    background-color: #4e73df;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

    .close-notification:hover {
        background-color: #2e59d9;
    }

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.required-field {
    color: #e74a3b;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.additional-info {
    margin-top: 30px;
}

.info-item {
    margin-bottom: 10px;
    color: #000;
}
/* ══════════ CLIENTELE SECTION (FIXED ALIGNMENT) ══════════ */
.clientele {
    background: #faf8f1;
    padding: 90px 0;
    position: relative;
    overflow: hidden
}

.cl-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px;
    padding: 0 16px
}

.cl-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 600 13px/1 'Jost',sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #2c9c58;
    background: #e7f3ea;
    border: 1px solid #bfe0cb;
    padding: 9px 18px;
    border-radius: 100px
}

    .cl-kicker .icon {
        width: 16px;
        height: 16px
    }

.cl-title {
    font: 700 clamp(28px,4vw,44px)/1.15 'Playfair Display',serif;
    color: #14532d;
    margin: 18px 0 12px
}

    .cl-title em {
        font-style: italic;
        color: #c9a227
    }

.cl-sub {
    font: 400 17px/1.6 'Jost',sans-serif;
    color: #4a5d52
}

.cl-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px
}

.cl-item {
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e8e2d4;
    border-radius: 12px;
    padding: 14px 18px;
    font: 500 15px/1.4 'Jost',sans-serif;
    color: #1d3b2a;
    box-shadow: 0 2px 8px rgba(20,83,45,.05);
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease
}

    .cl-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(20,83,45,.12);
        border-color: #c9a227
    }

.cl-ico {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e7f3ea;
    color: #2c9c58;
    transition: background .25s ease,color .25s ease
}

    .cl-ico .icon {
        width: 17px;
        height: 17px
    }

.cl-item:hover .cl-ico {
    background: #2c9c58;
    color: #fff
}

.cl-note {
    margin: 52px auto 0;
    max-width: 860px;
    width: 100%;
    box-sizing: border-box;
    background: #14532d;
    color: #eaf3ec;
    border-radius: 18px;
    padding: 32px 36px;
    display: flex;
    gap: 18px;
    align-items: flex-start
}

    .cl-note .icon {
        flex: 0 0 30px;
        width: 30px;
        height: 30px;
        color: #e7c65f;
        margin-top: 2px
    }

    .cl-note p {
        margin: 0;
        font: 400 16.5px/1.75 'Jost',sans-serif
    }

@media(max-width:1024px) {
    .cl-grid {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }
}

@media(max-width:768px) {
    .clientele {
        padding: 64px 0
    }

    .cl-grid {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .cl-note {
        flex-direction: column;
        padding: 26px
    }
}

@media(max-width:480px) {
    .cl-grid {
        grid-template-columns: minmax(0,1fr)
    }
}}/* =====================================================
   PERENNIAL FLOWERING PLANTS PAGE — STYLE SHEET
   NOTE: No :root colors — theme is scoped to .pp-wrapper
   so every page can have its own color scheme.
===================================================== */

* {
    box-sizing: border-box;
}

/* ════════════════════════════════════════════════════════════
   PERENNIAL FLOWERING PLANTS — product page styles
   File : css/flower-internal.css   (link AFTER style.css)
   ✔ Every rule is scoped under .pp-wrapper → cannot clash
     with existing site classes
   ✔ Reuses the site palette (green/gold/cream) & fonts
     (Playfair Display + Jost) already loaded by style.css
════════════════════════════════════════════════════════════ */
.pp-wrapper {
    --pp-green: #2c9c58;
    --pp-green-d: #14532d;
    --pp-green-dd: #0c3220;
    --pp-gold: #c9a227;
    --pp-gold-l: #e7c65f;
    --pp-cream: #faf8f1;
    --pp-sand: #f3ede0;
    --pp-line: #e3dcc9;
    --pp-text: #243425;
    --pp-muted: #67766a;
    --pp-head: "Playfair Display",Georgia,serif;
    --pp-body: "Jost","Segoe UI",Arial,sans-serif;
    font-family: var(--pp-body);
    color: var(--pp-text);
    font-size: 16px;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(24px,4vw,56px) clamp(16px,4vw,32px);
}

    .pp-wrapper *, .pp-wrapper *::before, .pp-wrapper *::after {
        box-sizing: border-box
    }

    .pp-wrapper img {
        display: block;
        max-width: 100%
    }

    .pp-wrapper .hidden {
        display: none !important
    }
    /* scoped fallback — remove if style.css already styles .icon */
    .pp-wrapper .icon {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex: none;
        display: inline-block;
        vertical-align: middle
    }

    /* ── card shell ── */
    .pp-wrapper .pp-card {
        background: #fff;
        border: 1px solid var(--pp-line);
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(20,60,35,.07);
        padding: clamp(20px,3vw,36px);
        margin-bottom: clamp(24px,4vw,40px);
    }

    /* ── product grid ── */
    .pp-wrapper .pp-product-grid {
        display: grid;
        grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
        gap: clamp(24px,3.5vw,44px);
        margin-bottom: clamp(20px,3vw,30px);
    }

    /* gallery */
    .pp-wrapper .pp-main-img {
        position: relative;
        margin: 0;
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid var(--pp-line)
    }

        .pp-wrapper .pp-main-img img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            transition: opacity .35s ease,transform .8s ease
        }

        .pp-wrapper .pp-main-img:hover img {
            transform: scale(1.04)
        }

        .pp-wrapper .pp-main-img.pp-fading img {
            opacity: 0
        }

    .pp-wrapper .pp-img-badge {
        position: absolute;
        left: 14px;
        bottom: 14px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(12,50,32,.82);
        color: #fff;
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 12.5px;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

        .pp-wrapper .pp-img-badge .icon {
            color: var(--pp-gold-l)
        }

    .pp-wrapper .pp-thumbs {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 12px;
        margin-top: 12px
    }

    .pp-wrapper .pp-thumb {
        padding: 0;
        border: 2px solid transparent;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
        background: none;
        opacity: .65;
        transition: .25s;
    }

        .pp-wrapper .pp-thumb img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover
        }

        .pp-wrapper .pp-thumb:hover {
            opacity: 1
        }

        .pp-wrapper .pp-thumb.is-active {
            opacity: 1;
            border-color: var(--pp-gold)
        }

    /* info column */
    .pp-wrapper .pp-title {
        font-family: var(--pp-head);
        font-weight: 700;
        color: var(--pp-green-dd);
        font-size: clamp(26px,3vw,38px);
        line-height: 1.15;
        margin: 0 0 14px;
    }

    .pp-wrapper .pp-type-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 18px
    }

        .pp-wrapper .pp-type-chips span {
            background: var(--pp-sand);
            color: var(--pp-green-d);
            border: 1px solid var(--pp-line);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 999px;
        }

    .pp-wrapper .pp-quick-meta {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px 22px
    }

        .pp-wrapper .pp-quick-meta li {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--pp-muted);
            font-size: 15px
        }

        .pp-wrapper .pp-quick-meta .icon {
            color: var(--pp-green)
        }

        .pp-wrapper .pp-quick-meta b {
            color: var(--pp-text);
            font-weight: 600
        }

    /* price / quantity block */
    .pp-wrapper .pp-price-block {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 14px 22px;
        background: var(--pp-cream);
        border: 1px dashed var(--pp-gold);
        border-radius: 12px;
        padding: 16px 18px;
        margin-bottom: 20px;
    }

    .pp-wrapper .pp-qty-row {
        display: flex;
        align-items: center;
        gap: 12px
    }

    .pp-wrapper .pp-qty-label {
        font-size: 13px;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--pp-muted);
        font-weight: 600
    }

    .pp-wrapper .pp-qty-box {
        display: flex;
        align-items: center;
        border: 1.5px solid var(--pp-green);
        border-radius: 10px;
        overflow: hidden;
        background: #fff
    }

    .pp-wrapper .pp-qty-btn {
        width: 38px;
        height: 38px;
        border: none;
        background: none;
        cursor: pointer;
        font-size: 18px;
        line-height: 1;
        color: var(--pp-green-d);
        transition: .2s;
    }

        .pp-wrapper .pp-qty-btn:hover {
            background: var(--pp-green);
            color: #fff
        }

    .pp-wrapper #qtyInput {
        width: 52px;
        height: 38px;
        border: none;
        text-align: center;
        font: 600 16px var(--pp-body);
        color: var(--pp-text)
    }

        .pp-wrapper #qtyInput:focus {
            outline: none;
            background: var(--pp-cream)
        }

    .pp-wrapper .pp-unit {
        font-size: 14px;
        color: var(--pp-muted)
    }

    .pp-wrapper .pp-edit-link {
        color: var(--pp-green);
        font-weight: 600;
        font-size: 14px;
        text-decoration: underline;
        text-underline-offset: 3px
    }

    .pp-wrapper .pp-best-price {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        color: var(--pp-green-d);
        font-weight: 600;
        text-decoration: none;
        border-bottom: 2px solid var(--pp-gold);
        padding-bottom: 3px;
        transition: .2s;
    }

        .pp-wrapper .pp-best-price:hover {
            color: var(--pp-gold)
        }

    /* action buttons */
    .pp-wrapper .pp-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 18px
    }

    .pp-wrapper .pp-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 12px 24px;
        border-radius: 999px;
        border: 1.5px solid transparent;
        font: 600 14.5px var(--pp-body);
        letter-spacing: .04em;
        cursor: pointer;
        text-decoration: none;
        transition: .25s;
    }

    .pp-wrapper .pp-btn-outline {
        border-color: var(--pp-green);
        color: var(--pp-green-d);
        background: #fff
    }

        .pp-wrapper .pp-btn-outline:hover {
            background: var(--pp-green);
            color: #fff
        }

    .pp-wrapper .pp-btn-solid {
        background: var(--pp-green);
        color: #fff
    }

        .pp-wrapper .pp-btn-solid:hover {
            background: var(--pp-green-d)
        }

    .pp-wrapper .pp-btn-wa {
        border-color: #25a55a;
        color: #1d7a44;
        background: #f0faf3
    }

        .pp-wrapper .pp-btn-wa:hover {
            background: #25a55a;
            color: #fff
        }

    .pp-wrapper .pp-btn-gold {
        background: var(--pp-gold);
        color: var(--pp-green-dd)
    }

        .pp-wrapper .pp-btn-gold:hover {
            background: var(--pp-gold-l)
        }

    .pp-wrapper .pp-btn-outline-l {
        border-color: rgba(255,255,255,.65);
        color: #fff;
        background: transparent
    }

        .pp-wrapper .pp-btn-outline-l:hover {
            background: #fff;
            color: var(--pp-green-d)
        }

    .pp-wrapper .pp-trust {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 18px
    }

        .pp-wrapper .pp-trust li {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 14.5px;
            color: var(--pp-muted)
        }

        .pp-wrapper .pp-trust .icon {
            color: var(--pp-green)
        }

    /* spec tables */
    .pp-wrapper .pp-spec-table {
        width: 100%;
        border-collapse: collapse;
        border: 1px solid var(--pp-line)
    }

        .pp-wrapper .pp-spec-table td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--pp-line);
            font-size: 15px;
            vertical-align: top
        }

        .pp-wrapper .pp-spec-table tr:last-child td {
            border-bottom: none
        }

        .pp-wrapper .pp-spec-table tbody tr:nth-child(odd) td {
            background: var(--pp-cream)
        }

    .pp-wrapper .spec-label {
        width: 220px;
        font-weight: 600;
        color: var(--pp-green-d);
        white-space: nowrap
    }

    .pp-wrapper .spec-value {
        color: var(--pp-text)
    }

    .pp-wrapper .pp-extra-rows {
        margin-top: 10px
    }

    /* view more toggle */
    .pp-wrapper .pp-view-more {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 14px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--pp-green);
        font: 600 14.5px var(--pp-body);
        padding: 6px 2px;
        border-bottom: 1.5px dashed var(--pp-green);
    }

        .pp-wrapper .pp-view-more .arrow {
            display: inline-block;
            font-size: 11px;
            transition: transform .3s
        }

        .pp-wrapper .pp-view-more.pp-open .arrow {
            transform: rotate(180deg)
        }

    /* message strip */
    .pp-wrapper .pp-message {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 18px;
        padding: 13px 16px;
        border-radius: 10px;
        font-size: 15px;
        animation: pp-pop .35s ease;
    }

        .pp-wrapper .pp-message .icon {
            color: #fff
        }

    .pp-wrapper .pp-msg-success {
        background: var(--pp-green-d);
        color: #fff
    }

    .pp-wrapper .pp-msg-error {
        background: #8c2f23;
        color: #fff
    }

@keyframes pp-pop {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* enquiry panel */
.pp-wrapper .pp-enq-panel {
    margin-top: 22px;
    padding: 22px;
    border: 1.5px solid var(--pp-green);
    border-radius: 14px;
    background: #f4faf5;
    animation: pp-pop .35s ease;
}

    .pp-wrapper .pp-enq-panel h3 {
        font-family: var(--pp-head);
        color: var(--pp-green-dd);
        font-size: 21px;
        margin: 0 0 4px
    }

.pp-wrapper .pp-enq-sub {
    margin: 0;
    font-size: 14px;
    color: var(--pp-muted)
}

.pp-wrapper .pp-enq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 16px 0
}

.pp-wrapper .pp-enq-full {
    grid-column: 1/-1
}

.pp-wrapper .pp-enq-panel label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--pp-muted);
    margin-bottom: 6px
}

.pp-wrapper .pp-enq-panel input, .pp-wrapper .pp-enq-panel textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--pp-line);
    border-radius: 10px;
    font: 400 15px var(--pp-body);
    color: var(--pp-text);
    background: #fff;
    transition: border-color .2s;
}

    .pp-wrapper .pp-enq-panel input:focus, .pp-wrapper .pp-enq-panel textarea:focus {
        outline: none;
        border-color: var(--pp-green)
    }

.pp-wrapper .pp-enq-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

/* details card */
.pp-wrapper .pp-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--pp-head);
    font-weight: 700;
    color: var(--pp-green-dd);
    font-size: clamp(22px,2.6vw,30px);
    margin: 0 0 18px;
}

    .pp-wrapper .pp-section-title .icon {
        color: var(--pp-gold);
        width: 1.2em;
        height: 1.2em
    }

.pp-wrapper .pp-description {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.75
}

/* varieties */
.pp-wrapper .pp-varieties {
    margin-bottom: clamp(28px,4vw,44px)
}

.pp-wrapper .pp-head-block {
    text-align: center;
    max-width: 640px;
    margin: 0 auto
}

    .pp-wrapper .pp-head-block h2 {
        font-family: var(--pp-head);
        font-weight: 700;
        color: var(--pp-green-dd);
        font-size: clamp(26px,3vw,36px);
        margin: 0 0 10px
    }

        .pp-wrapper .pp-head-block h2 em {
            color: var(--pp-green);
            font-style: italic
        }

    .pp-wrapper .pp-head-block p {
        margin: 0;
        color: var(--pp-muted)
    }

.pp-wrapper .pp-var-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(230px,1fr));
    gap: 20px;
    margin-top: 26px
}

.pp-wrapper .pp-var-card {
    background: #fff;
    border: 1px solid var(--pp-line);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .3s,box-shadow .3s;
}

    .pp-wrapper .pp-var-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(20,60,35,.12)
    }

    .pp-wrapper .pp-var-card img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover
    }

.pp-wrapper .pp-var-body {
    padding: 14px 16px 16px
}

    .pp-wrapper .pp-var-body h3 {
        font-family: var(--pp-head);
        font-size: 19px;
        color: var(--pp-green-dd);
        margin: 0 0 4px
    }

    .pp-wrapper .pp-var-body p {
        margin: 0;
        font-size: 13.5px;
        color: var(--pp-muted)
    }

/* USP strip */
.pp-wrapper .pp-usp {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    margin-bottom: clamp(28px,4vw,44px)
}

.pp-wrapper .pp-usp-item {
    background: var(--pp-cream);
    border: 1px solid var(--pp-line);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    transition: .3s;
}

    .pp-wrapper .pp-usp-item:hover {
        border-color: var(--pp-gold);
        transform: translateY(-4px)
    }

.pp-wrapper .pp-usp-ico {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--pp-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pp-wrapper .pp-usp-ico .icon {
        width: 24px;
        height: 24px
    }

.pp-wrapper .pp-usp-item h3 {
    font-family: var(--pp-head);
    font-size: 17.5px;
    color: var(--pp-green-dd);
    margin: 0 0 6px
}

.pp-wrapper .pp-usp-item p {
    margin: 0;
    font-size: 13.5px;
    color: var(--pp-muted)
}

/* CTA band */
.pp-wrapper .pp-cta {
    position: relative;
    overflow: hidden;
    background: var(--pp-green-dd);
    color: #fff;
    border-radius: 18px;
    padding: clamp(28px,4vw,44px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.pp-wrapper .pp-cta-leaf {
    position: absolute;
    right: -34px;
    bottom: -44px;
    width: 200px;
    height: 200px;
    color: rgba(231,198,95,.09);
    pointer-events: none
}

.pp-wrapper .pp-cta h2 {
    font-family: var(--pp-head);
    font-size: clamp(22px,2.8vw,32px);
    margin: 0 0 8px
}

    .pp-wrapper .pp-cta h2 em {
        color: var(--pp-gold-l);
        font-style: italic
    }

.pp-wrapper .pp-cta p {
    margin: 0;
    color: #cfe0d3;
    font-size: 15.5px;
    max-width: 52ch
}

.pp-wrapper .pp-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

/* ── responsive ── */
@media (max-width:920px) {
    .pp-wrapper .pp-product-grid {
        grid-template-columns: 1fr
    }

    .pp-wrapper .pp-usp {
        grid-template-columns: 1fr 1fr
    }

    .pp-wrapper .spec-label {
        width: 150px
    }
}

@media (max-width:560px) {
    .pp-wrapper .pp-usp {
        grid-template-columns: 1fr
    }

    .pp-wrapper .pp-trust {
        grid-template-columns: 1fr
    }

    .pp-wrapper .pp-enq-grid {
        grid-template-columns: 1fr
    }

    .pp-wrapper .pp-qty-row {
        flex-wrap: wrap
    }

    .pp-wrapper .pp-best-price {
        margin-left: 0
    }
    /* stack spec tables on small screens */
    .pp-wrapper .pp-spec-table, .pp-wrapper .pp-spec-table tbody,
    .pp-wrapper .pp-spec-table tr, .pp-wrapper .pp-spec-table td {
        display: block;
        width: 100%
    }

        .pp-wrapper .pp-spec-table tr {
            border-bottom: 1px solid var(--pp-line)
        }

            .pp-wrapper .pp-spec-table tr:last-child {
                border-bottom: none
            }

    .pp-wrapper .spec-label {
        white-space: normal;
        padding-bottom: 2px
    }

    .pp-wrapper .spec-value {
        padding-top: 0
    }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .pp-title {
        font-size: 22px;
    }

    .pp-header-top {
        flex-direction: column;
    }

    .pp-price-block {
        text-align: left;
    }

    .pp-qty-row {
        justify-content: flex-start;
    }

    .spec-label {
        width: 130px;
        font-size: 13px;
    }

    .pp-btn {
        width: 100%;
    }
}

/* ---------- Wrapper ---------- */
.detail-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 25px 15px;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    padding: 10px 14px;
    background: #f5f5f5;
    border-radius: var(--radius);
}

    .breadcrumb a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

    .breadcrumb .sep {
        margin: 0 6px;
        color: #999;
    }

/* ---------- Main Product Card ---------- */
.product-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    overflow: hidden;
}

.detail-title {
    margin: 0;
    padding: 16px 24px;
    background: linear-gradient(90deg, var(--primary), #43a047);
    color: var(--white);
    font-size: 26px;
    letter-spacing: 0.5px;
}

.detail-body {
    padding: 20px 24px;
}

.detail-text p {
    line-height: 1.85;
    font-size: 15px;
    text-align: justify;
    margin: 0 0 20px;
}

/* ---------- Features / Used In Columns ---------- */
.info-columns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.info-box {
    flex: 1;
    min-width: 240px;
    background: var(--primary-light);
    border: 1px solid #c8e6c9;
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 16px 20px;
}

.info-heading {
    margin: 0 0 12px;
    font-size: 17px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .info-heading .icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        background: var(--primary);
        color: var(--white);
        border-radius: 50%;
        font-size: 13px;
    }

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .info-list li {
        position: relative;
        padding: 6px 0 6px 24px;
        font-size: 14.5px;
        line-height: 1.5;
        border-bottom: 1px dashed #c8e6c9;
    }

        .info-list li:last-child {
            border-bottom: none;
        }

        .info-list li::before {
            content: "🍃";
            position: absolute;
            left: 0;
            top: 6px;
            font-size: 13px;
        }

/* ---------- Enquiry Note ---------- */
.enquiry-note {
    background: #fff8e1;
    border: 1px dashed var(--accent);
    border-radius: var(--radius);
    padding: 12px 18px;
}

    .enquiry-note p {
        margin: 0;
        font-size: 14px;
        color: #795548;
        font-style: italic;
    }

/* ---------- Sub Product Cards ---------- */
.sub-product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .sub-product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

.sub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 20px;
    background: var(--primary-light);
    border-bottom: 2px solid var(--primary);
}

.sub-title {
    margin: 0;
    font-size: 19px;
    color: var(--primary-dark);
}

.sub-body {
    padding: 15px 20px;
}

    .sub-body p {
        margin: 0;
        line-height: 1.8;
        font-size: 15px;
        text-align: justify;
    }

.more-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

    .more-link:hover {
        color: var(--accent);
        text-decoration: underline;
    }

/* ---------- Enquiry Checkbox ---------- */
.enquiry-check {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    user-select: none;
    background: var(--white);
    padding: 6px 12px;
    border: 1px solid #c8e6c9;
    border-radius: 30px;
    transition: all 0.25s ease;
}

    .enquiry-check:hover {
        border-color: var(--primary);
    }

    .enquiry-check input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: var(--primary);
        cursor: pointer;
    }

/* ---------- Enquiry Button ---------- */
.enquiry-actions {
    text-align: center;
    padding: 10px 0 30px;
}

.enquiry-btn {
    padding: 13px 40px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(90deg, var(--primary), #43a047);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

    .enquiry-btn:hover:not(:disabled) {
        background: linear-gradient(90deg, var(--primary-dark), var(--primary));
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(46, 125, 50, 0.4);
    }

    .enquiry-btn:disabled {
        background: #bdbdbd;
        cursor: not-allowed;
        box-shadow: none;
    }

.enquiry-hint {
    margin: 10px 0 0;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

/* ---------- Success Message ---------- */
.enquiry-success {
    background: var(--primary-light);
    border: 1px solid var(--primary);
    color: var(--primary-dark);
    padding: 12px 18px;
    border-radius: var(--radius);
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Fade-in animation ---------- */
.product-detail-card,
.sub-product-card {
    opacity: 0;
    transform: translateY(25px);
}

    .product-detail-card.visible,
    .sub-product-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

/* ---------- Back To Top ---------- */
#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 999;
}

    #backToTop.show {
        opacity: 1;
        visibility: visible;
    }

    #backToTop:hover {
        background: var(--primary-dark);
    }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .detail-title {
        font-size: 22px;
    }

    .info-columns {
        flex-direction: column;
    }

    .sub-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .enquiry-btn {
        width: 100%;
    }
}/* ---------- Wrapper Layout ---------- */
.products-wrapper {
    display: flex;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 15px;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    align-items: flex-start;
}

/* ---------- Sidebar ---------- */
.products-sidebar {
    width: 200px;
    flex-shrink: 0;
    position: sticky;
    background: #517805;
    top: 15px;
}

.sidebar-toggle {
    display: none;
    width: 100%;
    padding: 12px 15px;
    background: #517805;
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.sidebar-inner {
    background: #517805;
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.sidebar-heading,
.sidebar-contact h3 {
    background: #164D2F;
    color: #fff;
    margin: 0;
    padding: 13px 18px;
    font-size: 17px;
    letter-spacing: 0.5px;
}

.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0; 
}

    .sidebar-menu > li > a {
        display: block;
        padding: 9px 18px;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        border-left: 3px solid transparent;
        transition: all 0.25s ease;
    }

        .sidebar-menu > li > a:hover,
        .sidebar-menu > li > a.active {
            background: var(--primary-light);
            color:#fff;
            border-left-color: var(--primary);
            padding-left: 24px;
        }

/* Sub menu (indented) */
.sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .sub-menu a {
        display: block;
        padding: 7px 18px 7px 34px;
        font-size: 13px;
        color: var(--text-light);
        text-decoration: none;
        transition: all 0.25s ease;
    }

        .sub-menu a::before {
            content: "↳ ";
            color: var(--primary);
        }

        .sub-menu a:hover {
            color: var(--primary-dark);
            background: var(--primary-light);
        }

/* Contact box */
.sidebar-contact {
    border-top: 1px solid var(--border);
    padding-bottom: 12px;
    background: var(--primary-light);
}

    .sidebar-contact p {
        margin: 12px 18px 0;
        font-size: 14px;
        color: var(--text);
    }

.view-number-btn {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

.mobile-number {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.hidden {
    display: none !important;
}

/* ---------- Main Content ---------- */
.products-main {
    flex: 1;
    min-width: 0;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    padding: 10px 14px;
    background: #f5f5f5;
    border-radius: var(--radius);
}

    .breadcrumb a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

    .breadcrumb .sep {
        margin: 0 6px;
        color: #999;
    }

/* Intro */
.products-intro p {
    line-height: 1.8;
    font-size: 15px;
    text-align: justify;
    margin: 0 0 15px;
}

/* ---------- Product Cards ---------- */
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    overflow: hidden;
    scroll-margin-top: 20px; /* offset when jumping via anchor */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

.card-title {
    margin: 0;
    padding: 14px 20px;
    background: linear-gradient(90deg, var(--primary), #43a047);
    color: var(--white);
    font-size: 19px;
    letter-spacing: 0.4px;
}

.card-body {
    padding: 16px 20px;
}

    .card-body p {
        margin: 0 0 12px;
        line-height: 1.75;
        font-size: 15px;
        text-align: justify;
    }

.read-more {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

    .read-more:hover {
        color: var(--accent);
        text-decoration: underline;
    }

/* Sub product chips */
.sub-products {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
}

.sub-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
}

.sub-link {
    display: inline-block;
    padding: 5px 14px;
    font-size: 13px;
    color: var(--primary-dark);
    background: var(--primary-light);
    border: 1px solid #c8e6c9;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .sub-link:hover {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
    }

/* ---------- Back To Top ---------- */
#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 999;
}

    #backToTop.show {
        opacity: 1;
        visibility: visible;
    }

    #backToTop:hover {
        background: var(--primary-dark);
    }

/* ---------- Fade-in animation on cards ---------- */
.product-card {
    opacity: 0;
    transform: translateY(25px);
}

    .product-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 992px) {
    .products-wrapper {
        flex-direction: column;
    }

    .products-sidebar {
        width: 100%;
        position: static;
    }

    .sidebar-toggle {
        display: block;
    }

    .sidebar-inner {
        display: none;
        border-top: none;
    }

        .sidebar-inner.open {
            display: block;
        }
}

@media (max-width: 576px) {
    .card-title {
        font-size: 17px;
    }

    .products-intro p, .card-body p {
        font-size: 14px;
    }
}

/* ============ ROOT / RESET ============ */
:root {
    --g950: #082314;
    --g900: #0c3220;
    --g800: #11462b;
    --g700: #175c37;
    --g600: #1f7a45;
    --g500: #2c9c58;
    --mint: #e9f3ea;
    --cream: #faf8f1;
    --cream2: #f1ecdc;
    --gold: #c9a227;
    --gold2: #e7c65f;
    --gold3: #f3e3a5;
    --ink: #182419;
    --mut: #5a6b5c;
    --line: #e4ddc8;
    --serif: 'Playfair Display',serif;
    --sans: 'Jost',sans-serif;
    --sh: 0 24px 60px -24px rgba(8,35,20,.35);
    --ease: cubic-bezier(.22,.61,.36,1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
    font-size: 16px
}

    body.no-scroll {
        overflow: hidden
    }

img, svg {
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s
}

ul {
    list-style: none
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none
}

::selection {
    background: var(--gold);
    color: #08230f
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    background: var(--cream)
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--g700),var(--g900));
    border-radius: 8px
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 26px
}

section {
    position: relative
}

.sec {
    padding: 100px 0
}

.icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: none
}

.icon-fi {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: none;
    flex: none
}

/* ============ REVEAL ANIMATIONS ============ */
[data-reveal] {
    opacity: 0;
    transition: opacity .9s ease,transform .9s var(--ease)
}

[data-reveal="up"] {
    transform: translateY(46px)
}

[data-reveal="left"] {
    transform: translateX(-56px)
}

[data-reveal="right"] {
    transform: translateX(56px)
}

[data-reveal="zoom"] {
    transform: scale(.86)
}

[data-reveal].revealed {
    opacity: 1;
    transform: none
}

/* ============ PRELOADER ============ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: radial-gradient(700px 400px at 50% 40%,#11462b,#082314);
    display: grid;
    place-items: center;
    transition: opacity .7s ease,visibility .7s
}

    #preloader.done {
        opacity: 0;
        visibility: hidden
    }

.pl-inner {
    text-align: center;
    color: var(--cream)
}

.pl-leaf {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    animation: plGrow 1.6s var(--ease) both
}

@keyframes plGrow {
    0% {
        transform: scale(0) rotate(-30deg);
        opacity: 0
    }

    60% {
        opacity: 1
    }

    100% {
        transform: scale(1) rotate(0)
    }
}

.pl-leaf path {
    fill: var(--gold2)
}

.pl-txt {
    font-family: var(--serif);
    font-size: 26px;
    letter-spacing: .04em
}

.pl-sub {
    font-size: 11px;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: var(--gold2);
    margin-top: 8px;
    animation: pulseTxt 1.6s ease infinite
}

@keyframes pulseTxt {
    50% {
        opacity: .35
    }
}

/* ============ TOPBAR + NAV ============ */
.site-head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000
}

.topbar {
    background: var(--g950);
    color: #c8ddcd;
    font-size: 13.5px;
    max-height: 60px;
    overflow: hidden;
    transition: max-height .45s var(--ease),opacity .3s
}

.site-head.scrolled .topbar {
    max-height: 0;
    opacity: 0
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 42px;
    gap: 18px
}

.tb-left, .tb-right {
    display: flex;
    align-items: center;
    gap: 22px
}

.tb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap
}

    .tb-item .icon {
        width: 15px;
        height: 15px;
        color: var(--gold2)
    }

    .tb-item a:hover {
        color: var(--gold2)
    }

.tb-right .icon {
    width: 15px;
    height: 15px
}

.lang-select {
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    color: #dfeee3;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    font-family: var(--sans);
    cursor: pointer
}

    .lang-select option {
        color: #123
    }

.visitor {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--gold3);
    letter-spacing: .06em
}

#visitorNum {
    font-weight: 600;
    min-width: 56px;
    display: inline-block
}

.nav {
    background: rgba(250,248,241,.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: .35s
}

.site-head.scrolled .nav {
    background: rgba(250,248,241,.97);
    box-shadow: 0 14px 34px -20px rgba(8,35,20,.45)
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 26px;
    height: 88px;
    transition: height .35s var(--ease)
}

.site-head.scrolled .nav-inner {
    height: 66px
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-right: auto
}

.brand-logo {
    width: 52px;
    height: 52px;
    flex: none;
    filter: drop-shadow(0 6px 12px rgba(31,122,69,.35))
}

.brand-txt .b1 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 23px;
    line-height: 1.05;
    color: var(--g900)
}

    .brand-txt .b1 span {
        color: var(--g600)
    }

.brand-txt .b2 {
    font-size: 10.5px;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px
}

.nav-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #2c3b2e;
    position: relative;
    padding: 6px 0
}

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .4s var(--ease)
    }

    .nav-link:hover::after, .nav-link.is-active::after {
        transform: scaleX(1);
        transform-origin: left
    }

    .nav-link.is-active {
        color: var(--g700)
    }

.search-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 7px 8px 7px 16px;
    box-shadow: inset 0 2px 6px rgba(8,35,20,.05)
}

    .search-wrap input {
        border: none;
        outline: none;
        background: none;
        font-family: var(--sans);
        font-size: 13.5px;
        width: 150px;
        color: var(--ink)
    }

        .search-wrap input::placeholder {
            color: #9aa89b
        }

.search-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--g800);
    color: var(--gold2);
    display: grid;
    place-items: center;
    transition: .3s
}

    .search-btn:hover {
        background: var(--gold);
        color: #12300f
    }

    .search-btn .icon {
        width: 15px;
        height: 15px
    }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .06em;
    padding: 15px 30px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    transition: transform .35s var(--ease),box-shadow .35s;
    white-space: nowrap
}

    .btn:hover {
        transform: translateY(-3px)
    }

    .btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -90%;
        width: 50%;
        height: 100%;
        background: linear-gradient(100deg,transparent,rgba(255,255,255,.5),transparent);
        transform: skewX(-20deg);
        transition: left .7s ease
    }

    .btn:hover::before {
        left: 140%
    }

.btn-gold {
    background: linear-gradient(120deg,var(--gold2),var(--gold));
    color: #20300d;
    box-shadow: 0 14px 30px -12px rgba(201,162,39,.65)
}

.btn-green {
    background: linear-gradient(120deg,var(--g600),var(--g800));
    color: #eef7ee;
    box-shadow: 0 14px 30px -12px rgba(23,92,55,.6)
}

.btn-ghost {
    border: 1.5px solid rgba(250,248,241,.45);
    color: var(--cream)
}

    .btn-ghost:hover {
        background: rgba(250,248,241,.12);
        border-color: var(--gold2)
    }

.btn-sm {
    padding: 11px 22px;
    font-size: 13px
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    place-items: center;
    color: var(--g900)
}

    .burger .icon {
        width: 22px;
        height: 22px
    }

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: linear-gradient(160deg,var(--g900),var(--g950));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 34px;
    transform: translateX(100%);
    transition: transform .5s var(--ease)
}

    .mobile-nav.open {
        transform: none
    }

    .mobile-nav a {
        color: var(--cream);
        font-family: var(--serif);
        font-size: 30px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
        display: flex;
        justify-content: space-between;
        align-items: center
    }

        .mobile-nav a .icon {
            color: var(--gold2)
        }

    .mobile-nav .m-close {
        position: absolute;
        top: 24px;
        right: 24px;
        color: var(--cream);
        width: 46px;
        height: 46px;
        border: 1px solid rgba(255,255,255,.25);
        border-radius: 50%;
        display: grid;
        place-items: center
    }

.m-foot {
    margin-top: 30px;
    color: #9dbca6;
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase
}

/* ============ HERO SLIDER ============ */
.hero {
    min-height: 80vh;
    background: var(--g950);
    color: #f4f1e4;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 170px 0 130px
}

.hero-slider {
    position: absolute;
    inset: 0
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s ease, visibility 1.1s;
    display: flex;
    align-items: center;
    /* ↓ added for background image */
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .slide.is-active {
        opacity: 1;
        visibility: visible
    }

.slide-bg {
    position: absolute;
    inset: -70px;
    background: var(--bg);
    transform: scale(1.02)
}

.slide.is-active .slide-bg {
    animation: kenburns 9s ease-out forwards
}

@keyframes kenburns {
    from {
        transform: scale(1.02) translateX(0)
    }

    to {
        transform: scale(1.12) translateX(-26px)
    }
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,rgba(255,255,255,.025) 0 1px,transparent 1px 120px), radial-gradient(900px 420px at 20% 110%,rgba(0,0,0,.5),transparent 60%)
}

.slide-art {
    position: absolute;
    right: -40px;
    top: 0;
    bottom: 0;
    width: 58%;
    color: rgba(255,255,255,.10);
    z-index: 1;
    animation: floaty 9s ease-in-out infinite
}

    .slide-art svg {
        width: 100%;
        height: 100%
    }

.slide-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 50px;
    align-items: center;
    width: 100%
}

.slide-copy .kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold2);
    font-weight: 600;
    margin-bottom: 22px
}

.kicker .icon {
    width: 16px;
    height: 16px;
    color: var(--gold2)
}

.slide-copy h1 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(40px,5.6vw,74px);
    line-height: 1.06;
    letter-spacing: -.01em;
    margin-bottom: 22px
}

    .slide-copy h1 em {
        font-style: italic;
        background: linear-gradient(95deg,var(--gold3),var(--gold2) 60%,var(--gold));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent
    }

.slide-copy p {
    max-width: 560px;
    color: #cfe0d0;
    font-size: 17.5px;
    font-weight: 300;
    margin-bottom: 34px
}

.slide-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.slide-copy > *, .slide-cards > * {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s ease,transform .8s var(--ease)
}

.slide.is-active .slide-copy > *:nth-child(1) {
    transition-delay: .25s
}

.slide.is-active .slide-copy > *:nth-child(2) {
    transition-delay: .4s
}

.slide.is-active .slide-copy > *:nth-child(3) {
    transition-delay: .55s
}

.slide.is-active .slide-copy > *:nth-child(4) {
    transition-delay: .7s
}

.slide.is-active .slide-copy > *, .slide.is-active .slide-cards > * {
    opacity: 1;
    transform: none
}

.slide-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end
}

.glass-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 22px 28px;
    min-width: 250px;
    color: var(--cream);
    animation: floaty 7s ease-in-out infinite
}

    .glass-card:nth-child(2) {
        animation-delay: -3s;
        margin-right: 44px
    }

    .glass-card .gc-num {
        font-family: var(--serif);
        font-size: 36px;
        font-weight: 700;
        color: var(--gold2);
        line-height: 1
    }

    .glass-card .gc-lbl {
        font-size: 12.5px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: #c4d8c6;
        margin-top: 6px
    }

.gc-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(231,198,95,.14);
    border: 1px solid rgba(231,198,95,.4);
    color: var(--gold3);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 12.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    animation: floaty 8s ease-in-out infinite;
    animation-delay: -5s
}

    .gc-chip .icon {
        width: 14px;
        height: 14px
    }

@keyframes floaty {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

.fall-leaf {
    position: absolute;
    top: -60px;
    z-index: 2;
    color: rgba(143,209,120,.35);
    pointer-events: none;
    animation: leafFall linear infinite
}

@keyframes leafFall {
    0% {
        transform: translateY(-8vh) rotate(0) translateX(0);
        opacity: 0
    }

    8% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        transform: translateY(112vh) rotate(340deg) translateX(70px);
        opacity: 0
    }
}

.hero-ui {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 36px;
    z-index: 6
}

    .hero-ui .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px
    }

.h-dots {
    display: flex;
    gap: 10px
}

.dot {
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,.22);
    position: relative;
    overflow: hidden
}

    .dot::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,var(--gold2),var(--gold));
        transform: scaleX(0);
        transform-origin: left
    }

    .dot.is-active::after {
        animation: dotFill 6.5s linear forwards
    }

@keyframes dotFill {
    to {
        transform: scaleX(1)
    }
}

.h-count {
    font-family: var(--serif);
    font-size: 16px;
    letter-spacing: .2em;
    color: #bcd3c2
}

    .h-count b {
        color: var(--gold2);
        font-size: 22px
    }

.h-arrows {
    display: flex;
    gap: 12px
}

.h-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);
    color: var(--cream);
    display: grid;
    place-items: center;
    transition: .35s var(--ease)
}

    .h-arrow:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: #20300d;
        transform: scale(1.08)
    }

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 120px;
    transform: translateX(-50%);
    z-index: 5;
    color: #bcd3c2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    letter-spacing: .4em;
    text-transform: uppercase
}

    .scroll-cue .icon {
        width: 18px;
        height: 18px;
        animation: cue 1.8s ease infinite
    }

@keyframes cue {
    0%,100% {
        transform: translateY(0);
        opacity: 1
    }

    50% {
        transform: translateY(9px);
        opacity: .4
    }
}

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    z-index: 4;
    line-height: 0
}

    .hero-wave svg {
        width: 100%;
        height: 88px
    }

/* ============ SECTION HEADS ============ */
.sec-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px
}

    .sec-head.left {
        text-align: left;
        margin-left: 0
    }

.kicker2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px
}

    .kicker2 .icon {
        width: 15px;
        height: 15px
    }

.sec-head h2 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(32px,4vw,50px);
    line-height: 1.12;
    color: var(--g900)
}

    .sec-head h2 em {
        font-style: italic;
        color: var(--g600)
    }

.sec-head p.lead {
    color: var(--mut);
    margin-top: 16px;
    font-size: 16.5px
}

.flourish {
    margin: 20px auto 0;
    width: 230px;
    height: 22px;
    color: var(--gold)
}

.sec-head.left .flourish {
    margin-left: 0
}

.flourish .fl-line {
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 1.2s ease .35s
}

.revealed .flourish .fl-line {
    stroke-dashoffset: 0
}

.flourish .fl-leaf {
    fill: currentColor;
    opacity: 0;
    transition: opacity .6s ease 1s
}

.revealed .flourish .fl-leaf {
    opacity: 1
}

/* ============ ABOUT ============ */
.about {
    background: var(--cream);
    overflow: hidden
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center
}

.about-art {
    position: relative;
    min-height: 480px
}

.art-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--sh);
    border: 6px solid #fff;
    position: relative
}

    .art-frame svg {
        width: 100%;
        height: 100%;
        transition: transform 8s ease
    }

    .art-frame:hover svg {
        transform: scale(1.08)
    }

.art-main {
    width: 82%;
    height: 360px
}

.art-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 240px;
    z-index: 2;
    animation: floaty 8s ease-in-out infinite
}

.exp-badge {
    position: absolute;
    left: -14px;
    bottom: 34px;
    z-index: 3;
    background: linear-gradient(140deg,var(--g700),var(--g900));
    color: var(--cream);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: var(--sh);
    animation: floaty 9s ease-in-out infinite
}

    .exp-badge .yrs {
        font-family: var(--serif);
        font-size: 44px;
        font-weight: 800;
        color: var(--gold2);
        line-height: 1
    }

    .exp-badge .yl {
        font-size: 11.5px;
        letter-spacing: .16em;
        text-transform: uppercase;
        line-height: 1.5;
        color: #c9dcc9
    }

.dot-grid {
    position: absolute;
    top: -24px;
    right: 8%;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--gold) 1.8px,transparent 2px);
    background-size: 20px 20px;
    opacity: .5;
    z-index: -1
}

.about-txt .kicker2 {
    margin-bottom: 10px
}

.about-txt h2 {
    font-family: var(--serif);
    font-size: clamp(32px,3.6vw,46px);
    color: var(--g900);
    line-height: 1.15;
    margin-bottom: 20px
}

    .about-txt h2 em {
        font-style: italic;
        color: var(--g600)
    }

.about-txt p {
    color: var(--mut);
    margin-bottom: 16px;
    font-size: 16px
}

.about-checks {
    margin: 26px 0 30px;
    display: grid;
    gap: 14px
}

    .about-checks li {
        display: flex;
        gap: 13px;
        align-items: flex-start;
        font-weight: 500;
        color: #25382a
    }

.chk {
    width: 26px;
    height: 26px;
    flex: none;
    border-radius: 50%;
    background: linear-gradient(140deg,var(--g600),var(--g800));
    color: var(--gold3);
    display: grid;
    place-items: center;
    margin-top: 1px
}

    .chk .icon {
        width: 13px;
        height: 13px;
        stroke-width: 2.4
    }

.signature {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px dashed var(--line);
    padding-top: 22px
}

.sig-name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--g800)
}

.sig-role {
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold)
}

/* ============ STATS ============ */
.stats {
    background: linear-gradient(120deg,var(--g800),var(--g700) 55%,var(--g600));
    color: var(--cream);
    overflow: hidden
}

    .stats::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(600px 260px at 85% 0%,rgba(231,198,95,.18),transparent 60%)
    }

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,1fr)
}

.stat {
    padding: 56px 30px;
    text-align: center;
    position: relative
}

    .stat + .stat::before {
        content: "";
        position: absolute;
        left: 0;
        top: 24%;
        bottom: 24%;
        width: 1px;
        background: rgba(255,255,255,.16)
    }

    .stat .s-num {
        font-family: var(--serif);
        font-weight: 800;
        font-size: clamp(36px,3.6vw,52px);
        color: var(--gold2);
        line-height: 1
    }

    .stat .s-lbl {
        margin-top: 10px;
        font-size: 13px;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: #d7e6d5
    }

    .stat .s-sub {
        font-size: 12px;
        color: #9dbfa4;
        margin-top: 4px;
        font-style: italic
    }

/* ============ APPROACH ============ */
.approach {
    background: #fff
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px
}

.app-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .5s var(--ease),box-shadow .5s,border-color .5s
}

    .app-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--sh);
        border-color: var(--gold)
    }

.app-num {
    position: absolute;
    top: 6px;
    right: 20px;
    font-family: var(--serif);
    font-size: 88px;
    font-weight: 800;
    color: rgba(31,122,69,.08);
    line-height: 1;
    transition: .5s
}

.app-card:hover .app-num {
    color: rgba(201,162,39,.22);
    transform: scale(1.1)
}

.app-ico {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: linear-gradient(140deg,var(--g600),var(--g900));
    color: var(--gold2);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    transition: .5s var(--ease)
}

.app-card:hover .app-ico {
    transform: rotate(-8deg) scale(1.06);
    border-radius: 50%
}

.app-ico .icon {
    width: 30px;
    height: 30px
}

.app-card h3 {
    font-family: var(--serif);
    font-size: 23px;
    color: var(--g900);
    margin-bottom: 12px
}

.app-card p {
    color: var(--mut);
    font-size: 15px
}

/* ============ HOT PRODUCTS MARQUEE ============ */
.hot {
    background: linear-gradient(180deg,#edf4e9,var(--cream));
    overflow: hidden
}

    .hot .sec-head {
        margin-bottom: 44px
    }

.hp-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
    mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
    padding: 10px 0 26px
}

.hp-track {
    display: flex;
    width: max-content;
    animation: mq 42s linear infinite
}

.hp-marquee:hover .hp-track {
    animation-play-state: paused
}

@keyframes mq {
    to {
        transform: translateX(-50%)
    }
}

.hp-group {
    display: flex;
    gap: 26px;
    padding-right: 26px
}

.hp-card {
    width: 330px;
    flex: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    transition: transform .5s var(--ease),box-shadow .5s
}

    .hp-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--sh)
    }

.hp-art {
    height: 190px;
    background: var(--ga);
    position: relative;
    display: grid;
    place-items: center;
    color: #fff;
    overflow: hidden
}

    .hp-art::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(220px 140px at 70% 20%,rgba(255,255,255,.22),transparent 60%)
    }

    .hp-art::after {
        content: "";
        position: absolute;
        width: 190px;
        height: 190px;
        border: 1.5px dashed rgba(255,255,255,.35);
        border-radius: 50%;
        animation: spin 26s linear infinite
    }

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.hp-art .icon {
    width: 78px;
    height: 78px;
    stroke-width: 1.1;
    position: relative;
    z-index: 1;
    transition: transform .6s var(--ease)
}

.hp-card:hover .hp-art .icon {
    transform: scale(1.14) rotate(-6deg)
}

.hp-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(8,35,20,.45);
    backdrop-filter: blur(6px);
    color: var(--gold3);
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(231,198,95,.4)
}

.hp-body {
    padding: 24px 26px 26px
}

    .hp-body h3 {
        font-family: var(--serif);
        font-size: 22px;
        color: var(--g900);
        margin-bottom: 8px
    }

    .hp-body p {
        font-size: 14.5px;
        color: var(--mut);
        margin-bottom: 16px
    }

.hp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--g700)
}

    .hp-link .icon {
        width: 15px;
        height: 15px;
        transition: transform .3s
    }

    .hp-link:hover {
        color: var(--gold)
    }

        .hp-link:hover .icon {
            transform: translate(3px,-3px)
        }

/* ============ PRODUCTS ============ */
.products {
    background: var(--cream)
}

.plants-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 44px 46px;
    margin-bottom: 26px;
    box-shadow: 0 20px 50px -34px rgba(8,35,20,.3)
}

.plants-col h4 {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--g900);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

    .plants-col h4 .icon {
        color: var(--gold)
    }

.plants-col li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 7px 0;
    color: #33463a;
    font-size: 15px;
    border-bottom: 1px dashed var(--line)
}

    .plants-col li .icon {
        width: 14px;
        height: 14px;
        color: var(--g600);
        margin-top: 5px
    }

.spec-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px
}

.spec-chip {
    background: var(--mint);
    border: 1px solid #cfe4cf;
    color: var(--g800);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600
}

    .spec-chip b {
        color: var(--gold);
        font-family: var(--serif)
    }

.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 44px 0 36px
}

.fbtn {
    padding: 11px 26px;
    border-radius: 30px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: #42553f;
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: .06em;
    transition: .35s var(--ease)
}

    .fbtn:hover {
        border-color: var(--g600);
        color: var(--g700);
        transform: translateY(-2px)
    }

    .fbtn.is-active {
        background: linear-gradient(120deg,var(--g700),var(--g900));
        color: var(--gold3);
        border-color: transparent;
        box-shadow: 0 12px 26px -12px rgba(17,70,43,.6)
    }

.p-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(255px,1fr));
    gap: 24px
}

.p-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px 16px 22px;
    transition: transform .45s var(--ease),box-shadow .45s,border-color .45s;
    position: relative
}

    .p-card:hover {
        transform: translateY(-9px);
        box-shadow: var(--sh);
        border-color: var(--gold)
    }

    .p-card.pop {
        animation: pop .5s var(--ease)
    }

@keyframes pop {
    from {
        opacity: 0;
        transform: scale(.9) translateY(16px)
    }
}

.p-art {
    height: 150px;
    border-radius: 14px;
    background: var(--ga);
    display: grid;
    place-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px
}

    .p-art::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        border: 1px solid rgba(255,255,255,.3);
        border-radius: 50%;
        transition: .6s var(--ease)
    }

.p-card:hover .p-art::before {
    width: 160px;
    height: 160px
}

.p-art .icon {
    width: 58px;
    height: 58px;
    stroke-width: 1.2;
    transition: transform .55s var(--ease);
    z-index: 1
}

.p-card:hover .p-art .icon {
    transform: scale(1.15) rotate(-5deg)
}

.p-tag {
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    background: rgba(8,35,20,.35);
    padding: 4px 10px;
    border-radius: 14px;
    backdrop-filter: blur(4px)
}

.p-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--g900);
    padding: 0 6px;
    margin-bottom: 6px
}

.p-card p {
    font-size: 13.8px;
    color: var(--mut);
    padding: 0 6px
}

.p-count {
    text-align: center;
    margin-top: 30px;
    color: var(--mut);
    font-size: 13.5px;
    letter-spacing: .12em;
    text-transform: uppercase
}

    .p-count b {
        color: var(--gold);
        font-family: var(--serif);
        font-size: 18px
    }

/* ============ INFRASTRUCTURE ============ */
.infra {
    background: linear-gradient(180deg,var(--cream2),var(--cream));
    overflow: hidden
}

.infra-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center
}

.infra-txt p {
    color: var(--mut);
    margin-bottom: 16px
}

.loc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px
}

.loc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 9px 20px;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--g800);
    transition: .3s
}

    .loc-badge:hover {
        background: var(--g800);
        color: var(--gold3);
        transform: translateY(-3px);
        box-shadow: var(--sh)
    }

    .loc-badge .icon {
        width: 15px;
        height: 15px;
        color: var(--gold)
    }

.gal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.g-tile {
    border-radius: 20px;
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--ga);
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.9);
    box-shadow: 0 18px 40px -22px rgba(8,35,20,.5)
}

    .g-tile .icon {
        width: 64px;
        height: 64px;
        stroke-width: 1.1;
        transition: transform .6s var(--ease)
    }

    .g-tile:hover .icon {
        transform: scale(1.16) rotate(-5deg)
    }

    .g-tile::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,transparent 45%,rgba(8,35,20,.65));
    }

.g-cap {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    color: #fff;
    z-index: 1
}

    .g-cap b {
        font-family: var(--serif);
        font-size: 17px;
        display: block
    }

    .g-cap span {
        font-size: 12px;
        color: #d8e6d4;
        letter-spacing: .06em
    }

/* ============ SERVICES ============ */
.services {
    background: #fff
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 26px
}

.srv-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 36px 30px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    transition: .5s var(--ease)
}

    .srv-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: linear-gradient(180deg,var(--gold2),var(--gold));
        transition: width .45s var(--ease)
    }

    .srv-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--sh);
        background: #fff
    }

        .srv-card:hover::before {
            width: 5px
        }

.srv-ico {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #fff;
    border: 1.5px solid var(--gold);
    color: var(--g700);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    transition: .45s var(--ease)
}

.srv-card:hover .srv-ico {
    background: var(--g800);
    color: var(--gold2);
    border-color: transparent;
    transform: rotate(-8deg)
}

.srv-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--g900);
    margin-bottom: 10px
}

.srv-card p {
    color: var(--mut);
    font-size: 14.8px
}

/* ============ WHY US (DARK) ============ */
.why {
    background: radial-gradient(1000px 500px at 80% -10%,#1a5a35,#0c3220 55%,#082314);
    color: #dcead9;
    overflow: hidden
}

.why-art {
    position: absolute;
    inset: 0;
    color: rgba(255,255,255,.045);
    pointer-events: none
}

    .why-art svg {
        position: absolute
    }

.quote-band {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 1
}

    .quote-band .q-ico {
        width: 56px;
        height: 56px;
        color: var(--gold2);
        margin: 0 auto 20px
    }

    .quote-band p {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 500;
        font-size: clamp(22px,2.6vw,32px);
        line-height: 1.45;
        color: #f2f0e2
    }

    .quote-band span {
        display: block;
        margin-top: 18px;
        font-size: 12px;
        letter-spacing: .4em;
        text-transform: uppercase;
        color: var(--gold2)
    }

.why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 24px
}

.why-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 32px 30px;
    backdrop-filter: blur(6px);
    transition: .45s var(--ease)
}

    .why-card:hover {
        background: rgba(255,255,255,.09);
        transform: translateY(-7px);
        border-color: rgba(231,198,95,.5)
    }

.why-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px
}

.why-ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(231,198,95,.12);
    border: 1px solid rgba(231,198,95,.4);
    color: var(--gold2);
    display: grid;
    place-items: center;
    flex: none
}

.why-card h3 {
    font-family: var(--serif);
    font-size: 20.5px;
    color: #fff
}

.why-card p {
    font-size: 14.5px;
    color: #b9cfba
}

/* ============ CLIENTELE ============ */
.clientele {
    background: var(--cream);
    overflow: hidden
}

.cl-row {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
    mask-image: linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
    margin-bottom: 18px
}

.cl-track {
    display: flex;
    width: max-content;
    animation: mq 36s linear infinite
}

.cl-row:hover .cl-track {
    animation-play-state: paused
}

.cl-row.rev .cl-track {
    animation-direction: reverse;
    animation-duration: 42s
}

.cl-group {
    display: flex;
    gap: 16px;
    padding-right: 16px
}

.cl-item {
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 15px 26px;
    font-weight: 600;
    font-size: 15.5px;
    color: #2c3e30;
    white-space: nowrap;
    box-shadow: 0 10px 24px -18px rgba(8,35,20,.4);
    transition: .35s var(--ease)
}

    .cl-item:hover {
        transform: translateY(-4px);
        border-color: var(--gold);
        color: var(--g800)
    }

    .cl-item .icon {
        width: 17px;
        height: 17px;
        color: var(--gold)
    }

.clientele-note {
    text-align: center;
    color: var(--mut);
    font-size: 14px;
    margin: 26px 0 64px
}

    .clientele-note b {
        color: var(--g800)
    }

.hl-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;
    align-items: start
}

.hl-side {
    background: linear-gradient(150deg,var(--g800),var(--g950));
    color: #d9e8d8;
    border-radius: 26px;
    padding: 44px 40px;
    position: relative;
    overflow: hidden
}

    .hl-side .big {
        font-family: var(--serif);
        font-size: 52px;
        font-weight: 800;
        color: var(--gold2);
        line-height: 1
    }

    .hl-side h3 {
        font-family: var(--serif);
        font-size: 26px;
        color: #fff;
        margin: 14px 0 12px
    }

    .hl-side p {
        font-size: 14.8px;
        color: #b7cfba
    }

    .hl-side .icon-bg {
        position: absolute;
        right: -30px;
        bottom: -30px;
        width: 190px;
        height: 190px;
        color: rgba(255,255,255,.06)
    }

.acc {
    display: grid;
    gap: 6px
}

.acc-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .3s
}

    .acc-item.open {
        border-color: var(--gold);
        box-shadow: 0 16px 36px -24px rgba(8,35,20,.35)
    }

.acc-head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 19px 22px;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--g900)
}

.acc-num {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-size: 18px;
    min-width: 30px
}

.acc-head .acc-ico {
    margin-left: auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--g700);
    display: grid;
    place-items: center;
    transition: .4s var(--ease);
    flex: none
}

.acc-item.open .acc-ico {
    transform: rotate(45deg);
    background: var(--gold);
    color: #fff
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease)
}

    .acc-body p {
        padding: 0 22px 20px 68px;
        color: var(--mut);
        font-size: 14.6px
    }

/* ============ TESTIMONIALS ============ */
.testi {
    background: #fff;
    overflow: hidden
}

.rate-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 54px
}

.rate-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px 22px
}

    .rate-chip .r-num {
        font-family: var(--serif);
        font-weight: 800;
        font-size: 24px;
        color: var(--g800)
    }

    .rate-chip .r-star {
        color: var(--gold);
        display: grid
    }

    .rate-chip small {
        color: var(--mut);
        font-size: 12px;
        display: block
    }

.t-slider {
    max-width: 860px;
    margin: 0 auto;
    overflow: hidden;
    cursor: grab
}

    .t-slider:active {
        cursor: grabbing
    }

.t-track {
    display: flex;
    transition: transform .75s var(--ease)
}

.t-slide {
    min-width: 100%;
    padding: 10px 14px;
    text-align: center
}

    .t-slide .q-ico {
        width: 48px;
        height: 48px;
        color: rgba(31,122,69,.25);
        margin: 0 auto 18px
    }

.t-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(19px,2.2vw,25px);
    line-height: 1.55;
    color: #223526;
    max-width: 720px;
    margin: 0 auto 24px
}

.t-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: var(--gold);
    margin-bottom: 12px
}

.t-src {
    font-size: 12.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mut)
}

    .t-src b {
        color: var(--g700)
    }

.t-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 34px
}

.t-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    color: var(--g800);
    display: grid;
    place-items: center;
    transition: .35s var(--ease)
}

    .t-arrow:hover {
        background: var(--g800);
        color: var(--gold2);
        border-color: transparent;
        transform: scale(1.07)
    }

.tdots {
    display: flex;
    gap: 9px
}

.tdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--line);
    transition: .35s
}

    .tdot.is-active {
        background: var(--gold);
        transform: scale(1.35)
    }

/* ============ SISTER CONCERNS ============ */
.sister {
    background: linear-gradient(180deg,var(--mint),var(--cream))
}

.sis-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px
}

.sis-card {
    background: #fff;
    border-left: 5px solid var(--gold);
    border-radius: 0 20px 20px 0;
    padding: 30px 34px;
    box-shadow: 0 16px 38px -30px rgba(8,35,20,.45);
    transition: .45s var(--ease)
}

    .sis-card:hover {
        transform: translateX(8px);
        box-shadow: var(--sh)
    }

    .sis-card.feature {
        grid-column: 1/-1
    }

.sis-kick {
    font-size: 10.5px;
    letter-spacing: .36em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 8px
}

.sis-card h3 {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--g900);
    margin-bottom: 8px
}

.sis-card p {
    color: var(--mut);
    font-size: 15px;
    max-width: 900px
}

/* ============ CONTACT ============ */
.contact {
    background: var(--cream)
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start
}

.ct-cards {
    display: grid;
    gap: 18px
}

.ct-card {
    display: flex;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px 26px;
    transition: .4s var(--ease)
}

    .ct-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--sh);
        border-color: var(--gold)
    }

.ct-ico {
    width: 52px;
    height: 52px;
    flex: none;
    border-radius: 14px;
    background: linear-gradient(140deg,var(--g600),var(--g900));
    color: var(--gold2);
    display: grid;
    place-items: center
}

.ct-card h4 {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--g900);
    margin-bottom: 5px
}

.ct-card p, .ct-card a {
    font-size: 14.5px;
    color: var(--mut);
    line-height: 1.6;
    display: block
}

    .ct-card a:hover {
        color: var(--g600)
    }

.enq-form {
    background: linear-gradient(160deg,var(--g900),var(--g950));
    border-radius: 26px;
    padding: 44px 42px;
    color: #dcead9;
    position: relative;
    overflow: hidden
}

    .enq-form::before {
        content: "";
        position: absolute;
        top: -60px;
        right: -60px;
        width: 220px;
        height: 220px;
        border: 1.5px dashed rgba(231,198,95,.3);
        border-radius: 50%
    }

    .enq-form h3 {
        font-family: var(--serif);
        font-size: 30px;
        color: #fff;
        margin-bottom: 6px
    }

    .enq-form .f-sub {
        color: #a9c6ad;
        font-size: 14.5px;
        margin-bottom: 28px
    }

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.enq-form label {
    display: block;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold3);
    margin: 0 0 7px 4px;
    font-weight: 600
}

.enq-form input, .enq-form select, .enq-form textarea {
    width: 100%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    padding: 13px 16px;
    color: #f2f6ee;
    font-family: var(--sans);
    font-size: 14.5px;
    outline: none;
    transition: .3s;
    margin-bottom: 18px
}

    .enq-form select option {
        color: #123
    }

    .enq-form input:focus, .enq-form select:focus, .enq-form textarea:focus {
        border-color: var(--gold2);
        background: rgba(255,255,255,.1);
        box-shadow: 0 0 0 4px rgba(231,198,95,.15)
    }

.enq-form textarea {
    resize: vertical;
    min-height: 110px
}

.enq-form .btn {
    width: 100%;
    justify-content: center
}

.f-note {
    text-align: center;
    font-size: 12px;
    color: #8fae95;
    margin-top: 14px
}

/* ============ FOOTER ============ */
footer {
    background: var(--g950);
    color: #b9cfbd
}

.f-main {
    padding: 80px 26px 56px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 44px
}

.f-brand p {
    font-size: 14.5px;
    color: #93b29a;
    margin: 18px 0 22px;
    max-width: 300px
}

.socials {
    display: flex;
    gap: 11px
}

.soc {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    display: grid;
    place-items: center;
    color: #cfe3d3;
    transition: .35s var(--ease)
}

    .soc:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: #1c2a0d;
        transform: translateY(-4px)
    }

    .soc .icon {
        width: 17px;
        height: 17px
    }

.f-col h4 {
    font-family: var(--serif);
    color: #fff;
    font-size: 20px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px
}

    .f-col h4::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 36px;
        height: 2.5px;
        background: var(--gold);
        border-radius: 3px
    }

.f-col li {
    margin-bottom: 11px
}

.f-col a {
    font-size: 14.5px;
    color: #9dbca4;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

    .f-col a .icon {
        width: 12px;
        height: 12px;
        color: var(--gold);
        opacity: 0;
        margin-left: -20px;
        transition: .3s
    }

    .f-col a:hover {
        color: var(--gold2);
        padding-left: 4px
    }

        .f-col a:hover .icon {
            opacity: 1;
            margin-left: 0
        }

.f-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14.5px;
    color: #9dbca4
}

.f-contact .icon {
    color: var(--gold2);
    margin-top: 3px
}

.f-contact a {
    color: #c8dcc9
}

    .f-contact a:hover {
        color: var(--gold2)
    }
/* --- footer section 1 : logos --- */
.f-brands {
    background: var(--g900);
    border-top: 1px solid rgba(231,198,95,.22);
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding: 38px 0
}

.brands-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 34px
}

.brands-cap {
    font-size: 11px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold2);
    width: 100%;
    text-align: center;
    margin-bottom: 2px
}

.logo-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(231,198,95,.28);
    border-radius: 16px;
    padding: 16px 28px;
    min-width: 280px;
    transition: .4s var(--ease)
}

    .logo-card:hover {
        transform: translateY(-5px);
        background: rgba(255,255,255,.07);
        box-shadow: 0 18px 40px -20px rgba(0,0,0,.6)
    }

.lg-ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(140deg,var(--gold2),var(--gold));
    color: #1c2a0d;
    display: grid;
    place-items: center;
    flex: none
}

    .lg-ico .icon {
        width: 26px;
        height: 26px;
        stroke-width: 1.8
    }

.logo-card b {
    display: block;
    font-family: var(--serif);
    color: #fff;
    font-size: 17.5px;
    letter-spacing: .02em
}

.logo-card span {
    font-size: 11.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #93b29a
}
/* --- footer section 2 : copyright --- */
.f-copy {
    background: #051a0e;
    padding: 22px 0
}

.copy-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13.5px;
    color: #7fa086
}

    .copy-inner b {
        color: var(--gold2);
        font-weight: 600
    }

    .copy-inner a {
        color: var(--gold2)
    }

        .copy-inner a:hover {
            text-decoration: underline
        }

/* ============ FLOATING / TOAST ============ */
.to-top, .wa-btn {
    position: fixed;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 900;
    transition: .4s var(--ease);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px)
}

.to-top {
    bottom: 24px;
    background: var(--g900);
    color: var(--gold2);
    border: 1px solid rgba(231,198,95,.4)
}

.wa-btn {
    bottom: 86px;
    background: #1fa855;
    color: #fff;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: 0 12px 26px -10px rgba(31,168,85,.7)
}

    .wa-btn::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 2px solid #1fa855;
        animation: ring 2s ease-out infinite
    }

@keyframes ring {
    from {
        transform: scale(1);
        opacity: .8
    }

    to {
        transform: scale(1.55);
        opacity: 0
    }
}

.wa-btn:hover {
    transform: translateY(-4px)
}

.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: none
}

.to-top:hover {
    background: var(--gold);
    color: #1c2a0d
}

#toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%,80px);
    z-index: 2000;
    background: var(--g900);
    color: var(--cream);
    border: 1px solid rgba(231,198,95,.45);
    border-radius: 14px;
    padding: 15px 24px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 24px 50px -18px rgba(0,0,0,.6);
    opacity: 0;
    transition: .5s var(--ease);
    max-width: min(92vw,480px)
}

    #toast.show {
        transform: translate(-50%,0);
        opacity: 1
    }

    #toast .icon {
        color: var(--gold2)
    }

/* ============ RESPONSIVE ============ */
@media(max-width:1120px) {
    .slide-cards {
        display: none
    }

    .slide-inner {
        grid-template-columns: 1fr
    }

    .search-wrap input {
        width: 110px
    }
}

@media(max-width:992px) {
    .nav-links, .nav .btn, .search-wrap {
        display: none
    }

    .burger {
        display: grid
    }

    .tb-right .lang-wrap {
        display: none
    }

    .about-grid, .infra-grid, .ct-grid, .hl-wrap {
        grid-template-columns: 1fr
    }

    .about-art {
        min-height: 430px;
        margin-bottom: 20px
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .stat:nth-child(3)::before {
        display: none
    }

    .app-grid {
        grid-template-columns: 1fr
    }

    .f-main {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:640px) {
    .sec {
        padding: 70px 0
    }

    .hero {
        padding: 150px 0 120px
    }

    .tb-left .tb-item:nth-child(2) {
        display: none
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .stat {
        padding: 36px 16px
    }

        .stat:nth-child(2)::before {
            display: none
        }

    .plants-strip {
        grid-template-columns: 1fr;
        padding: 32px 26px
    }

    .sis-grid {
        grid-template-columns: 1fr
    }

    .f-main {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .f-row {
        grid-template-columns: 1fr
    }

    .h-count {
        display: none
    }

    .scroll-cue {
        display: none
    }

    .copy-inner {
        justify-content: center;
        text-align: center
    }

    .art-small {
        width: 56%;
        height: 190px
    }

    .art-main {
        height: 300px
    }

    .enq-form {
        padding: 34px 24px
    }

    .logo-card {
        min-width: 100%;
        justify-content: center
    }
}
/* ============================================================
   OM FARMS & NURSERY — COMPANY PROFILE (INNER PAGE) STYLES
   Requires: css/style.css (design system variables & base)
   ============================================================ */

/* ============ PAGE BANNER (INNER PAGES) ============ */
.page-banner {
    position: relative;
    padding: 190px 0 120px;
    overflow: hidden;
    color: #f4f1e4;
    background: radial-gradient(1000px 520px at 80% 10%,rgba(47,154,88,.4),transparent 60%), radial-gradient(800px 460px at 8% 90%,rgba(23,92,55,.55),transparent 60%), linear-gradient(118deg,#0b2b1a,#12422a 55%,#0d3320)
}

    .page-banner::after {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(90deg,rgba(255,255,255,.03) 0 1px,transparent 1px 120px), radial-gradient(900px 420px at 15% 118%,rgba(0,0,0,.45),transparent 60%)
    }

    .page-banner .container {
        position: relative;
        z-index: 2
    }

.pb-art {
    position: absolute;
    right: -40px;
    top: 0;
    bottom: 0;
    width: 46%;
    color: rgba(255,255,255,.08);
    z-index: 1;
    animation: floaty 9s ease-in-out infinite
}

    .pb-art svg {
        width: 100%;
        height: 100%
    }

.crumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #9dbca4
}

    .crumbs a {
        color: #cfe0d0
    }

        .crumbs a:hover {
            color: var(--gold2)
        }

    .crumbs span {
        color: var(--gold)
    }

    .crumbs b {
        color: var(--gold2);
        font-weight: 600
    }

.pb-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold2);
    font-weight: 600;
    margin-bottom: 18px
}

    .pb-kicker .icon {
        width: 16px;
        height: 16px;
        color: var(--gold2)
    }

.pb-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(40px,5vw,66px);
    line-height: 1.05;
    letter-spacing: -.01em
}

    .pb-title em {
        font-style: italic;
        background: linear-gradient(95deg,var(--gold3),var(--gold2) 60%,var(--gold));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent
    }

.pb-sub {
    margin-top: 16px;
    color: #cfe0d0;
    font-size: 13px;
    letter-spacing: .28em;
    text-transform: uppercase
}

.banner-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    z-index: 2;
    line-height: 0
}

    .banner-wave svg {
        width: 100%;
        height: 80px
    }
/* fade-in for banner content */
.page-banner .crumbs, .page-banner .pb-kicker, .page-banner .pb-title, .page-banner .pb-sub {
    opacity: 0;
    transform: translateY(24px);
    animation: pbIn .9s var(--ease) forwards
}

.page-banner .pb-kicker {
    animation-delay: .15s
}

.page-banner .pb-title {
    animation-delay: .3s
}

.page-banner .pb-sub {
    animation-delay: .45s
}

@keyframes pbIn {
    to {
        opacity: 1;
        transform: none
    }
}

/* ============ FOUNDER STORY / INTRO ============ */
.cp-intro {
    background: var(--cream)
}

.cp-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center
}

.cp-copy .kicker2 {
    margin-bottom: 12px
}

.cp-copy h2 {
    font-family: var(--serif);
    font-size: clamp(30px,3.4vw,44px);
    font-weight: 700;
    color: var(--g900);
    line-height: 1.15;
    margin-bottom: 20px
}

    .cp-copy h2 em {
        font-style: italic;
        color: var(--g600)
    }

.cp-copy p {
    color: var(--mut);
    margin-bottom: 16px;
    font-size: 16px
}

    .cp-copy p b {
        color: var(--g800)
    }

.founder-chip {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px dashed var(--line);
    padding-top: 22px;
    margin-top: 28px
}

.fc-ava {
    width: 58px;
    height: 58px;
    flex: none;
    border-radius: 50%;
    background: linear-gradient(140deg,var(--g600),var(--g900));
    color: var(--gold2);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: .04em;
    box-shadow: 0 12px 26px -12px rgba(17,70,43,.6)
}

.fc-name {
    display: block;
    font-family: var(--serif);
    font-size: 20px;
    color: var(--g800);
    line-height: 1.25
}

.fc-role {
    display: block;
    font-size: 11.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px
}

/* growth journey card */
.growth-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 48px 40px 40px;
    box-shadow: var(--sh)
}

    .growth-card::before {
        content: "";
        position: absolute;
        inset: 11px;
        border: 1.5px dashed rgba(201,162,39,.4);
        border-radius: 19px;
        pointer-events: none
    }

.gc-badge {
    position: absolute;
    top: -18px;
    right: 30px;
    background: linear-gradient(120deg,var(--gold2),var(--gold));
    color: #20300d;
    border-radius: 30px;
    padding: 9px 22px;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: 0 14px 28px -12px rgba(201,162,39,.75)
}

.gc-title {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--g900);
    margin-bottom: 18px;
    position: relative
}

.growth {
    position: relative
}

.g-stage {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    padding: 13px 0
}

    .g-stage:not(:last-child)::before {
        content: "";
        position: absolute;
        left: 30px;
        top: 76px;
        bottom: -8px;
        border-left: 2px dashed #e2d49a
    }

.gs-ico {
    width: 62px;
    height: 62px;
    flex: none;
    border-radius: 50%;
    background: var(--mint);
    border: 1.5px solid #cfe4cf;
    color: var(--g700);
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
    transition: .4s var(--ease)
}

    .gs-ico .icon {
        width: 28px;
        height: 28px
    }

.g-stage:hover .gs-ico {
    transform: scale(1.08) rotate(-6deg);
    background: var(--g800);
    color: var(--gold2);
    border-color: transparent
}

.gs-final {
    background: linear-gradient(140deg,var(--g600),var(--g900));
    color: var(--gold2);
    border-color: transparent
}

.g-stage b {
    display: block;
    font-family: var(--serif);
    font-size: 19px;
    color: var(--g900);
    line-height: 1.25
}

.g-stage span span {
    display: block;
    font-size: 12.5px;
    color: var(--mut);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 3px
}

.gc-quote {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed var(--line);
    font-family: var(--serif);
    font-style: italic;
    font-size: 16.5px;
    line-height: 1.55;
    color: var(--g800);
    position: relative
}

    .gc-quote .icon-fi {
        width: 20px;
        height: 20px;
        color: var(--gold);
        display: inline-block;
        vertical-align: -4px;
        margin-right: 6px
    }

/* ============ THREE PILLARS ============ */
.cp-pillars {
    background: #fff
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px
}

.pillar-card {
    position: relative;
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 42px 32px 36px;
    transition: transform .5s var(--ease),box-shadow .5s,border-color .5s
}

    .pillar-card::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 0;
        background: linear-gradient(90deg,var(--gold2),var(--gold));
        transition: height .45s var(--ease)
    }

    .pillar-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--sh);
        border-color: var(--gold)
    }

        .pillar-card:hover::after {
            height: 5px
        }

.pillar-num {
    position: absolute;
    top: 4px;
    right: 20px;
    font-family: var(--serif);
    font-size: 88px;
    font-weight: 800;
    line-height: 1;
    color: rgba(31,122,69,.08);
    transition: .5s
}

.pillar-card:hover .pillar-num {
    color: rgba(201,162,39,.22);
    transform: scale(1.1)
}

.pillar-ico {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: linear-gradient(140deg,var(--g600),var(--g900));
    color: var(--gold2);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    transition: .5s var(--ease)
}

.pillar-card:hover .pillar-ico {
    transform: rotate(-8deg) scale(1.06);
    border-radius: 50%
}

.pillar-ico .icon {
    width: 30px;
    height: 30px
}

.pillar-card h3 {
    font-family: var(--serif);
    font-size: 23px;
    color: var(--g900);
    margin-bottom: 12px
}

.pillar-card > p {
    color: var(--mut);
    font-size: 15px
}

.pillar-points {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

    .pillar-points li {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 6px 14px;
        font-size: 12.5px;
        font-weight: 600;
        color: var(--g800);
        transition: .3s
    }

        .pillar-points li:hover {
            border-color: var(--gold);
            transform: translateY(-2px)
        }

    .pillar-points .icon {
        width: 13px;
        height: 13px;
        color: var(--gold);
        stroke-width: 2.4
    }

/* ============ FACTS TABLE + VISIT CARD ============ */
.cp-facts {
    background: linear-gradient(180deg,var(--cream2),var(--cream))
}

.facts-wrap {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 50px;
    align-items: start
}

.facts-title {
    font-family: var(--serif);
    font-size: clamp(30px,3.4vw,42px);
    font-weight: 700;
    color: var(--g900);
    margin: 10px 0 28px
}

    .facts-title em {
        font-style: italic;
        color: var(--g600)
    }

.facts-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px -34px rgba(8,35,20,.4)
}

    .facts-table tr {
        transition: background .3s
    }

    .facts-table tbody tr:hover {
        background: var(--mint)
    }

    .facts-table th, .facts-table td {
        border-bottom: 1px solid var(--line);
        text-align: left;
        vertical-align: middle
    }

    .facts-table tr:last-child th, .facts-table tr:last-child td {
        border-bottom: none
    }

    .facts-table th {
        position: relative;
        width: 44%;
        padding: 20px 26px 20px 34px;
        font-weight: 600;
        font-size: 15px;
        color: var(--g900)
    }

        .facts-table th::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg,var(--gold2),var(--gold))
        }

    .facts-table td {
        padding: 20px 26px;
        font-size: 15px;
        font-weight: 500;
        color: var(--mut);
        border-left: 1px dashed var(--line)
    }

.th-row {
    display: flex;
    align-items: center;
    gap: 12px
}

.th-ico {
    width: 36px;
    height: 36px;
    flex: none;
    border-radius: 10px;
    background: var(--mint);
    color: var(--g700);
    display: grid;
    place-items: center
}

    .th-ico .icon {
        width: 18px;
        height: 18px
    }

/* visit / CTA card */
.visit-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg,var(--g900),var(--g950));
    border-radius: 26px;
    padding: 42px 38px;
    color: #dcead9
}

    .visit-card::before {
        content: "";
        position: absolute;
        top: -60px;
        right: -60px;
        width: 210px;
        height: 210px;
        border: 1.5px dashed rgba(231,198,95,.3);
        border-radius: 50%
    }

    .visit-card h3 {
        font-family: var(--serif);
        font-size: 28px;
        color: #fff;
        margin-bottom: 6px
    }

    .visit-card .v-sub {
        color: #a9c6ad;
        font-size: 14.5px;
        margin-bottom: 20px
    }

.v-item {
    display: flex;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(255,255,255,.12);
    font-size: 14.5px;
    color: #c8dcc9
}

    .v-item .icon {
        color: var(--gold2);
        margin-top: 3px;
        flex: none
    }

    .v-item b {
        display: block;
        font-family: var(--serif);
        font-size: 16.5px;
        color: #fff;
        margin-bottom: 2px
    }

    .v-item a {
        color: #e7c65f
    }

        .v-item a:hover {
            text-decoration: underline
        }

.visit-card .btn {
    margin-top: 26px;
    width: 100%;
    justify-content: center
}

.visit-card .fall-leaf {
    color: rgba(231,198,95,.35)
}

/* ============ RESPONSIVE ============ */
@media(max-width:992px) {
    .cp-grid, .facts-wrap {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .pillar-grid {
        grid-template-columns: 1fr
    }

    .pb-art {
        display: none
    }
}

@media(max-width:640px) {
    .page-banner {
        padding: 150px 0 90px
    }

    .growth-card {
        padding: 42px 26px 34px
    }

    .facts-table th {
        padding: 16px 18px 16px 26px
    }

    .facts-table td {
        padding: 16px 18px
    }

    .visit-card {
        padding: 34px 26px
    }
}